Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #!/bin/bash
- # recorrer los ficheros de un directorio y asingar permisos de ejecucion a aquellos que no lo tengan, los ficheros que deben tener este permiso tienen la extension '.sh'
- ruta=${1:-./}
- [[ "$ruta" =~ /$ ]] || ruta=${ruta}/
- for fichero in ${ruta}*;do
- if [ "${fichero: -3}" != ".sh" ];then
- continue
- fi
- chmod +x $fichero
- done
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement