9 lines
77 B
Bash
Executable File
9 lines
77 B
Bash
Executable File
#!/bin/bash
|
|
if [[ -n $1 ]]
|
|
then
|
|
echo $1
|
|
else
|
|
echo "No hay argumentos."
|
|
fi
|
|
|