1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-23 17:34:34 +03:00
samba-mirror/testprogs/blackbox/dfree.sh
Andreas Schneider eab5cdb66f testprogs: Reformat dfree.sh
shfmt -w -p -i 0 -fn testprogs/blackbox/dfree.sh

Signed-off-by: Andreas Schneider <asn@samba.org>
Reviewed-by: Pavel Filipenský <pfilipensky@samba.org>
2022-08-04 12:56:37 +00:00

9 lines
137 B
Bash
Executable File

#!/bin/sh
if [ "$1" = "." ]; then
echo "1000 10 2048"
elif [ "$1" = "subdir1" ]; then
echo "2000 20 4096"
else
echo "4000 40 8192"
fi