nixos-config/modules/home/scripts/scripts/dsize.sh
2023-11-13 00:16:48 +01:00

7 lines
115 B
Bash

#!/usr/bin/env bash
if [ "$#" -eq 1 ]; then
du -hs $1
else
echo "[ERROR] => Wrong number of parameters"
fi