Last active
January 3, 2023 11:30
-
-
Save chongshenng/7a920bf3298d2d722bc83d7969d8d59f to your computer and use it in GitHub Desktop.
Useful .bash_profile settings for MacOS and *nix
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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