ceu-notes/1/ISO/examenes/tema10-naortega/prob1-5.sh

11 lines
122 B
Bash
Raw Normal View History

2022-04-06 18:21:18 +00:00
#!/bin/bash
if [ $# -lt 3 ]
then
echo "Se precisan al menos 3 argumentos."
exit 1
fi
for i in $@; do echo "$i"; done
2022-04-08 15:59:49 +00:00