Created
October 31, 2019 00:28
-
-
Save aramboyajyan/99f51bb8a9f0d149ca8f9820af6db8d0 to your computer and use it in GitHub Desktop.
Bash profile
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
# Run the updates. | |
alias update="sudo -- sh -c 'apt-get update; apt-get upgrade -y --allow-unauthenticated; apt-get dist-upgrade -y --allow-unauthenticated; apt-get autoremov$ | |
# Colors! | |
if [ "$TERM" != "dumb" ]; then | |
[ -e "$HOME/.dir_colors" ] && | |
DIR_COLORS="$HOME/.dir_colors" [ -e "$DIR_COLORS" ] || | |
DIR_COLORS="" | |
eval "`dircolors -b $DIR_COLORS`" | |
alias ls='ls --color=auto' | |
fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment