How to use Bash aliases to increase your productivity

What is a Bash alias?

A Bash alias is a shortcut that helps you avoid typing a long command sequence. It can help you save a lot of keystrokes over the day and can also help you avoid remembering complex combinations of commands and options.

Defining Bash aliases

Bash aliases are defined in your:

$HOME/.bashrc

or

$HOME/bash_aliases (which must be loaded by $HOME/.bashrc).

Code

Let’s look at an example below, where you can see three aliases defined in the snippet.

alias ll='ls -l'
alias lt='ls -ltr'
alias kc='kubectl'
New on Educative
Learn to Code
Learn any Language as a beginner
Develop a human edge in an AI powered world and learn to code with AI from our beginner friendly catalog
🏆 Leaderboard
Daily Coding Challenge
Solve a new coding challenge every day and climb the leaderboard

Free Resources