Useful Shell Stuff
Useful Shell Stuff
The Linux command line is a source of constant amazement to me. Not a week goes by where I don't find some new thing to make my job (and/or life) easier. Today I'd like to share a few with you. BASH-isms
Programs
This is far from the end of the usefulness one can get out of a good command-line. Expect more from me on this topic in the future!
Re: Useful Shell Stuff·
Re: Useful Shell Stuff·
If you like !?, you'll probably gonna love this. In your /etc/inputrc or ./.inputrc ad the following lines: "^[[5~": history-search-backward # Previous The ^[ are control cahracters. What this does is bind searching through your bash_histrory to pg-up an pg-dn. Now suppose you did a
Want to do the sudo command again? Type s<pg-up><enter> Want to edit VersionTag again? Type v<pg-up><pg-up><pg-up><enter> <pg-dn> crawls through the list in the other direction. -- |

