This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo lsof -iTCP -sTCP:LISTEN -n -P | awk 'NR>1 {print $9, $1, $2}' | sed 's/.*://' | while read port process pid; do echo "Port $port: $(ps -p $pid -o command= | sed 's/^-//') (PID: $pid)"; done | sort -n |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Shift + Letra -> Acci贸n ascendente. | |
Cntrl + Letra -> Acci贸n descendente. | |
Shift + Alt + Letra -> Acci贸n secundaria ascendente. | |
Cntrl + Alt + Letra -> Acci贸n secundaria descendente. | |
Acciones completas Cntrl + Shift + Alt cuando una acci贸n se puede hacer de forma gradual y la queremos ejecutar de una vez. | |
Cntrl + Shift + Letra -> Acciones especiales que no tienen un subgrupo de shortcuts (la letra se asocia con la inicial de la acci贸n). | |
----------------------------------- | |
Occurrences: | |
* Mover a la siguiente -> Cntrl + J | |
* Mover a la anterior -> Shift + J |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# load script utils | |
source script-utils.sh | |
log 'Installing Balena Etcher Appimage' | |
exit-if-installed balena-etcher-electron | |
echo "deb https://deb.etcher.io stable etcher" | sudo tee /etc/apt/sources.list.d/balena-etcher.list | |
sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 379CE192D401AB61 | |
sudo apt-get update | |
sudo apt-get install balena-etcher-electron -y |