Advertisement
sergio_educacionit

system_info.sh

Jul 13th, 2024
172
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.54 KB | None | 0 0
  1. #!/bin/bash
  2.  
  3. # Variables
  4. # la variable 'usuario' tiene el valor posicional '$1'.
  5.  
  6. usuario=$1
  7. fecha="$(date)"
  8. systemuser="$USER ($UID)"
  9. terminal="$(tty | cut  -c 6-)"
  10.  
  11.  
  12. memoria="$(cat /proc/meminfo | grep MemTotal)"
  13. cpu="$(cat /proc/cpuinfo | grep "model name" | head -1)"
  14.  
  15. source /etc/os-release
  16.  
  17.  
  18. echo "Fecha: $fecha
  19. Generado por: $usuario
  20. Usuario del sistema: $systemuser
  21. Terminal: $terminal
  22.  
  23. -- Informacion del SO --
  24.  
  25.  
  26. Nombre: $NAME
  27. Version: $VERSION
  28.  
  29. recursos del sistema
  30.  
  31. $memoria
  32.  
  33. $cpu
  34. " | tee informe.txt
  35.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement