Skip to content

Instantly share code, notes, and snippets.

@icheko
Created December 19, 2013 08:56
Show Gist options
  • Save icheko/8036372 to your computer and use it in GitHub Desktop.
Save icheko/8036372 to your computer and use it in GitHub Desktop.
some common aliases i use on RHEL systems
#!/bin/bash
# TAR #
alias tar-view="tar -tvf"
# FILES #
alias ll='ls -lah'
alias ls='ls --color=auto'
# NAVIGATION #
alias ..="cd .."
alias ...="cd ../.."
alias ....="cd ../../.."
alias .....="cd ../../../.."
alias ......="cd ../../../../.."
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment