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 |