Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #!/bin/bash
- # verficiar si el usuario es root.
- # La variable de entorno '$UID' contiene la id de
- # usuario conectado o que tiene sesion abierta en un shell
- # Si condicion Entonces...
- if [ $UID -eq 0 ]; then
- # esto
- apt update
- apt upgrade -y
- # Sino...
- else
- # esto otro
- echo "Debes ser usuario 'root' para ejecutar este programa."
- fi
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement