Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #!/bin/bash
- # el siguiente script utiliza el comando 'pstree'
- su -c "apt update && apt install psmisc"
- # Abrir arbol de procesos para la tty en uso
- # Averguar tty en uso
- TTY1="$(tty | cut -d "/" -f 3)/$(tty | cut -d "/" -f 4)"
- # Obtener el PID para el interprete en uso en la tty en uso
- BASHPID="$(ps aux | grep $TTY1 | grep bash | grep -v grep | cut -d ' ' -f 5)"
- # Arbol de procesos para el interprete en uso
- pstree -p $BASHPID
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement