Advertisement
sergio_educacionit

privilegiado.sh

Dec 7th, 2023 (edited)
501
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.11 KB | None | 0 0
  1. #!/bin/bash
  2.  
  3. if [ $UID == 0 ]; then
  4.     echo "hola mundo!"
  5. else
  6.     echo "debe ser usuario root"
  7.     exit 1
  8. fi
  9.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement