tab completion
by default, tab completion is case sensitive. to make it case insensitive, run
echo "set completion-ignore-case On" >> ~/.inputrc
Terminal colors
to get colored output when you run ls,
create or edit ~/.bash_profile
and add
if [ "$TERM" == "xterm-color" ]; then
alias ls='ls -G'
fi
by default, tab completion is case sensitive. to make it case insensitive, run
echo "set completion-ignore-case On" >> ~/.inputrc
Terminal colors
to get colored output when you run ls,
create or edit ~/.bash_profile
and add
if [ "$TERM" == "xterm-color" ]; then
alias ls='ls -G'
fi



Sign In
Create Account






