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 -F --color=auto' | |
alias ll='ls -alF' | |
alias grep='grep --color=auto' | |
alias mkdir='mkdir -pv' | |
alias df='df -H' | |
alias du='du -ch' | |
alias mv="mv -v" | |
alias rm="rm -vi" |
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
#!/bin/bash | |
# Usage: Execute the following command: | |
<<COMMENT1 | |
curl -L https://gist.github.com/kfkawalec/a71f74ceddc76180fd9fe42814985536/raw | bash -x | |
COMMENT1 | |
# Once this file has been executed once, you can pull the latest updates with 'bashupdate' |