7 lines
115 B
Bash
Executable file
7 lines
115 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
if [ "$#" -eq 1 ]; then
|
|
du -hs $1
|
|
else
|
|
echo "[ERROR] => Wrong number of parameters"
|
|
fi |