Jump to content

Terminal tweaks


rl1024
 Share

1 post in this topic

Recommended Posts

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

Link to comment
Share on other sites

 Share

×
×
  • Create New...