Tagged Questions
8
votes
2answers
1k views
What is the difference between ~/.profile, ~/.bashrc, ~/.bash_profile, ~/.gnomerc, /etc/bash_bashrc, /etc/screenrc …?
Answers to the questions on SO and askubuntu, along with poking through (and reading headers of) $HOME and /etc/, indicate a number of files that can be used to set environment variables, including:
...
11
votes
2answers
606 views
Set and Shopt - Why Two?
set and shopt are both shell builtins that control various options. I often forget which options are set by which command, and occasionally which option sets/unsets (set +o/-o, shopt -s/-u). Why are ...
10
votes
2answers
9k views
CLICOLOR and LS_COLORS in bash
I have the following setup in .bashrc for coloring of listings.
export CLICOLOR=1
export ...