#!/bin/bash
if [[ -n $1 ]]
then
	echo $1
else
	echo "No hay argumentos."
fi