Etikett: Bash

  • Introduction to bash programming

    Are you new to bash programming? Want to know more about it? If you answer yes then I recommend that you have a look at the BASH Programming – Introduction HOW-TO by Mike G.

  • Bash settings

    Occasionally I need to update my .bashrc file and every time I google for information on how to do different things. These are some more common things I end up putting into my .bashrc that I’ve found while googling. #Common alias alias …=’cd .. ; cd ..’ alias ..=’cd ..’ alias _=’cd -’ alias cls=’clear’…