1 2 3 4 5 6 7 8 9 10 11 12 13 |
#!/bin/bash echo ¿Esta seguro que quiere borrar el archivo $1?; read res; if test $res = "si"; then if test -f $1; then echo $(rm -r $1); echo "Archivo $1 borrado"; else echo $1 "NO es un archivo"; fi else echo "¡¡¡ El archivo no a sido borrado !!!"; fi |