Posted on January 23, 2025 by Loay Idwan.

Top .bashrc Aliases to Save Time

Why use bashrc aliases?


Where to find bashrc file?

The file can be found in “~/.bashrc” and you can open it with your favourite text editor Nano or Vim (if you can manage quitting Vim ofc).

If the file doesn’t exist you can just run “sudo mkfile ~/.bashrc”, wait a minute! “mkfile” isn’t actually a linux command, is it? That’s the beauty of using aliases, in my bashrc file i have this line “ alias mkfile='touch’ ” which allows me to use “mkfile” instead of “touch”, ofc you don’t have to the same, it’s all personal preference.

Ok now actually how do you create the file if it doesn’t exist? run the following command “sudo touch ~/.bashrc”.


How is the .bashrc file structured?

initially the file is empty, you start by typing “ alias YourDesiredAlias=’ActualCommand’ “, view the examples below to understand it better.


Categories of Aliases

  1. Navigation
  2. Git Shortcuts
  3. Managing Updates
  4. System Commands
  5. File Management
  6. Misc.

Let’s dive right in!

1. Navigation

Find yourself typing “cd ..” or “cd SomeSpecificDict”?

Use the following aliases: ( without the [] )

2. Git Shortcuts

Use git for version control a lot?

Use the following aliases: (don’t feel like explaining the commands :) )

3. Managing Updates

Tired of typing “sudo pacman -Syu” or “sudo apt update”?

Use the following aliases: (Adjust commands to match your Linux distribution, the current aliases are meant for Arch)

4. System Commands

Dual booting windows and linux? Then windows updates probably messes up grub every once and a while.

Use the following alias:

5. File Management

Want to make “ls” colorfull, grouped or ordered but you don’t want to type long commands each time?

Use the following aliases: (feel free to change the alias if you don’t like the ones i chose)

6. Misc.

Want your system to shutdown after X time passes?

Use the following: (replace X with desired time, add as many aliases as you want with different times)

Check out my own .bachrc on github.


Now create your own aliases for your most used commands so that can save time!

tags: bashrc, bashrc, alias, time, save, top, file, command
Last updated on January 23, 2025 by Loay Idwan.

© 2025 Loay's Blog