Skip to content

Latest commit

 

History

History
executable file
·
37 lines (28 loc) · 1.1 KB

File metadata and controls

executable file
·
37 lines (28 loc) · 1.1 KB

Best alias for linux terminal

Save time, when you rush your terminal.

shell script executing by curl to install a list of predefined alias for the current .bashrc/.zshrc user's.

Dont' forget to re-open a new terminal after script execution no matter the shell type

Install and and auto configure

bash

curl -sL https://raw.githubusercontent.com/archidote/best-alias-for-linux-terminal/master/install.sh | bash -s bash

zsh

curl -sL https://raw.githubusercontent.com/archidote/best-alias-for-linux-terminal/master/install.sh | bash -s zsh > /dev/null 2>&1

Delete

bash

If you want to delete the aliases added by this project, run :

curl -sL https://raw.githubusercontent.com/archidote/best-alias-for-linux-terminal/master/delete.sh | bash -s bash

zsh

If you want to delete the aliases added by this project, run :

curl -sL https://raw.githubusercontent.com/archidote/best-alias-for-linux-terminal/master/delete.sh | bash -s zsh > /dev/null 2>&1

Update

Delete, and re-run the inital setup with curl according to your shell type