Skip to content

Instantly share code, notes, and snippets.

@chongshenng
Last active January 3, 2023 11:30
Show Gist options
  • Select an option

  • Save chongshenng/7a920bf3298d2d722bc83d7969d8d59f to your computer and use it in GitHub Desktop.

Select an option

Save chongshenng/7a920bf3298d2d722bc83d7969d8d59f to your computer and use it in GitHub Desktop.
Useful .bash_profile settings for MacOS and *nix
export PS1='\u@mac \W:~\$ '
alias rm='rm -i'
alias cp='cp -i'
alias mv='mv -i'
alias ls='ls -Ga --color'
alias ll='ls -l'
alias llrt='ll -rth'
alias lls='ll -l --block-size=MB'
alias la='ls -a'
alias trm='echo $TERM'
alias grep='grep --color=auto'
alias df='/bin/df -PH'
alias du='/usr/bin/du -kh'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment