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: febrero 2014
BASH – Script LINUX para gestionar usuarios.
#!/bin/bash if [ $(whoami) != “root” ]; then echo “Tienes que ser root para ejecutar este script” echo “Ejecuta “sudo su” para ser root” exit 1 fi while [ “$opcion” != “0” ] do echo echo “MENU” echo “—-” echo … Sigue leyendo
Publicado en Unix - Linux
1 comentario
BASH – Script MENU de opciones.
#!/bin/bash # Script BASH de Ejemplo de MENU clear echo “———-MENU DE OPCIONES———-” echo “” PS3=’Ingrese su opcion a ejecutar : ‘ options=(“Opcion Nro. 1” “Opcion Nro. 2” “Opcion Nro. 3” “Salir”) select opt in “${options[@]}” do case $opt in … Sigue leyendo
Publicado en Unix - Linux
Deja un comentario
BASH – Script de uso condicional IF.
#!/bin/bash clear numero=2 # Verifica si el numero esta comprendido en el rago 3 al 10 if [ $numero -ge 3 -a $numero -lt 10 ]; then echo “Si esta en el rago : 3 – 10” else echo “No … Sigue leyendo
Publicado en Unix - Linux
Deja un comentario