Skip to content

zegetech/bash_alias

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 

Repository files navigation

Quick Bash aliases.

A list of aliases of commonly used bash commands and Functions

Clone

Clone in .aliases directory in your home.

git clone git@github.com:gathuku/bash_alias.git

Try em out

To try them out, Enable bash aliases in terminal by running the command:

source bash_alias/bash_aliases.sh

Enable bash functions in terminal by running the command:

source bash_alias/bash_functions.sh

Installation

To install them on your system so that they are available whenever you load a terminal, run the following:

cd bash_alias
mv bash_aliases.sh ~/.bash_aliases
mv bash_functions.sh ~/.bash_functions

Then add the following in ~/.bashrc or ~/.bash_profile, or other terminal profile file

if [ -f ~/.bash_aliases ]; then
  . ~/.bash_aliases
fi

if [ -f ~/.bash_functions ]; then
  . ~/.bash_functions
fi

About

Bash aliases and functions for daily living

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages