Last active
May 19, 2023 14:48
-
-
Save simonLeary42/e54b87160c6823558e72b9214dc032ad to your computer and use it in GitHub Desktop.
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
alias ls="ls --color=auto -F --quoting-style=shell" | |
alias la="ls -a" | |
alias ll="ls -la" | |
alias cp="cp -v" | |
alias rm="rm -v" | |
alias mv="mv -v" | |
alias chmod="chmod -v" | |
alias chown="chown -v" | |
alias df="/bin/df -h --output=source,size,used,avail,pcent,file" | |
alias cdp="cd $OLDPWD" | |
alias grep="grep --color=auto" | |
alias grepi="grep -i" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment