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

8 lines
76 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