Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- # evaluar el primer argumento
- # si no hay usar el directorio actual
- # si existe evaluar si tiene '/' al final
- # si no lo tiene agregarlo
- ruta=${1:-./}
- [[ "$ruta" =~ /$ ]] || ruta=${ruta}/
- echo $ruta
- for fichero in ${ruta}*;do
- echo $fichero
- done
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement