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