TP-systeme-exploitation-cen.../TP_Shell/verif/S6
2023-06-20 20:57:09 +02:00

11 lines
166 B
Plaintext

for var in "$@"
do
if [ $var = "-t" ]
then
echo -n "-x "
elif [ ! $var = "-T" ] && [ ! $var = "-e" ]
then
echo -n "$var "
fi
done