TP-systeme-exploitation-cen.../TP_Shell/verif/S6

11 lines
166 B
Plaintext
Raw Normal View History

2023-06-20 18:57:09 +00:00
for var in "$@"
do
if [ $var = "-t" ]
then
echo -n "-x "
elif [ ! $var = "-T" ] && [ ! $var = "-e" ]
then
echo -n "$var "
fi
done