Solicito tu ayuda para mantener este Proyecto.
Gracias por tu aporte.
Comentarios recientes
- Marco en LINUX – Comandos Lsattr y chattr: leer y establecer atributos especiales (Bit Inmutable o Bit Append Only).
- Gonzalo Reiser A. en LINUX – Comandos Lsattr y chattr: leer y establecer atributos especiales (Bit Inmutable o Bit Append Only).
- Marco en LINUX – Comandos Lsattr y chattr: leer y establecer atributos especiales (Bit Inmutable o Bit Append Only).
- Angel en EXPECT- Script para ejecutar comandos en forma remota.-
- Angel en EXPECT- Script para ejecutar comandos en forma remota.-
Archivos
- enero 2021 (3)
- diciembre 2020 (2)
- noviembre 2020 (2)
- octubre 2020 (1)
- septiembre 2020 (4)
- agosto 2020 (1)
- julio 2020 (1)
- junio 2020 (5)
- mayo 2020 (12)
- abril 2020 (1)
- enero 2020 (1)
- noviembre 2019 (5)
- octubre 2019 (4)
- septiembre 2019 (1)
- agosto 2019 (1)
- julio 2019 (11)
- junio 2019 (1)
- julio 2018 (3)
- octubre 2017 (1)
- septiembre 2017 (2)
- agosto 2017 (3)
- julio 2017 (11)
- mayo 2017 (6)
- abril 2017 (3)
- marzo 2017 (7)
- febrero 2017 (1)
- diciembre 2016 (3)
- octubre 2016 (4)
- septiembre 2016 (2)
- agosto 2016 (10)
- julio 2016 (9)
- junio 2016 (9)
- mayo 2016 (27)
- abril 2016 (10)
- marzo 2016 (15)
- enero 2016 (3)
- diciembre 2015 (7)
- octubre 2015 (2)
- septiembre 2015 (3)
- agosto 2015 (9)
- julio 2015 (11)
- junio 2015 (22)
- mayo 2015 (7)
- abril 2015 (22)
- marzo 2015 (5)
- febrero 2015 (2)
- enero 2015 (10)
- diciembre 2014 (7)
- noviembre 2014 (3)
- octubre 2014 (2)
- septiembre 2014 (4)
- agosto 2014 (22)
- julio 2014 (15)
- junio 2014 (8)
- mayo 2014 (6)
- abril 2014 (10)
- marzo 2014 (15)
- febrero 2014 (3)
- enero 2014 (15)
- diciembre 2013 (11)
- noviembre 2013 (25)
- octubre 2013 (46)
- septiembre 2013 (30)
Categorías
Archivo mensual: septiembre 2016
BASH – Bucle infinito muestra hora y hostname.-
#!/bin/bash while [ : ] do clear tput cup 5 5 date tput cup 6 5 echo “Hostname : $(hostname)” sleep 1 done
Publicado en Unix - Linux
Deja un comentario
BASH – Script pide un archivo para borrarlo y solicita confirmación.-
#!/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 … Sigue leyendo
Publicado en Unix - Linux
Deja un comentario