9 lines
77 B
Bash
Raw Normal View History

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