From bash to zsh and everywhere in between, show me yours and I’ll show you mines. Inspire others or get some feedback.

Simply copy & paste the output of alias in your terminal or add some comments to explain things for others.

Edit: Kbin users, click ‘More’ on a comment and use the fediverse link to read responses that have funky formatting

  • @rutrumA
    link
    fedilink
    English
    2
    edit-2
    8 months ago

    I don’t like having to renavigate to my project directory in a new terminal:

    alias clone='(pwd | urxvt & disown $!)'
    

    Takes my current directory and opens it in my terminal. Then it disowns that new terminal process, so if I close the current terminal the new one doesnt disappear with it.