Blog literacki, portal erotyczny - seks i humor nie z tej ziemi
#!/bin/sh
if test $# -eq 0; then
echo "wywolanie: zad2
elif test $# -eq 1; then
find ./uzytk \( -type d -name "$1" \) 2>/dev/null \;
elif test $# -eq 2; then
echo "nie podano nazwy pliku lub przelacznika -r"
elif test $# -eq 3; then
case "$2" in
-r) find ./uzytk \( -type f -name $3 \) -exec rm \;
;;
*) echo "zly przelacznik (-r)";;
esac
fi