Skip to content

Instantly share code, notes, and snippets.

View a3y3's full-sized avatar
🦀

Soham Dongargaonkar a3y3

🦀
View GitHub Profile
@a3y3
a3y3 / .bashrc
Last active November 5, 2020 20:31
My customized bashrc that includes cl (which runs cd then ls) and customized prompt!
stty stop ^J # use ctrl+j to stop terminal output, enabling you to use forward search using ctrl+s
S1='\[\e[0;31m\]\u\[\e[m\] $ '
function cecho () {
echo -en '\E[0;32m';
echo -en $1;
echo;
tput sgr0;