From 85e5fa4dbf438b75cf49ba8ce042d40873c49df4 Mon Sep 17 00:00:00 2001 From: Shiham Abdul Rahman Date: Wed, 14 Dec 2022 20:38:29 +0500 Subject: [PATCH] added less colors --- bashrc | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/bashrc b/bashrc index 68bb08f..f077071 100644 --- a/bashrc +++ b/bashrc @@ -17,11 +17,15 @@ cdl(){ cd $(cat ~/.cache/whereami);};cdl #alias ssh='TERM=xterm ssh -o StrictHostKeyChecking=no' #alias ssh='TERM=xterm ssh' #alias ssh='TERM=xterm-256color ssh' -alias ls='ls --color=always' -alias grep='grep --color=always' + alias nano='nano -i' alias hdd='cd /mnt/hdd' +#Adding output colors +alias ls='ls --color=always' +alias grep='grep --color=always' +alias less='less -R' + #do math in shell math(){ echo $1 | bc;}