mirror of
https://github.com/Ahwxorg/nixos-config.git
synced 2025-12-04 15:00:13 +01:00
8 lines
105 B
Text
8 lines
105 B
Text
|
|
#!/bin/bash
|
||
|
|
|
||
|
|
if [ "$#" -eq 1 ]; then
|
||
|
|
du -hs $1
|
||
|
|
else
|
||
|
|
echo "[ERROR] => Wrong number of parameters"
|
||
|
|
fi
|