Last active
January 28, 2019 18:23
-
-
Save MarioJuniorPro/bcd5e2b67072977592c0c7eb114a50e6 to your computer and use it in GitHub Desktop.
Linux
This file contains hidden or 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
| # Bash PDF | |
| # https://learncodethehardway.org/unix/bash_cheat_sheet.pdf | |
| # kill process | |
| ctrl + x | |
| # send to process background | |
| ctrl + z | |
| # toogle background process to foreground | |
| fg | |
| # Scroll top | |
| Shift + PgUp | |
| # Scroll down | |
| Shift + PgDown |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
git branch -D$(printf "%s\n" $ (git branch) | grep 'mario')