ceu-notes/1/ISO/examenes/tema10-naortega/prob2.sh

9 lines
77 B
Bash
Raw Normal View History

2022-04-06 18:21:18 +00:00
#!/bin/bash
if [[ -n $1 ]]
then
echo $1
else
echo "No hay argumentos."
fi
2022-04-08 15:59:49 +00:00