Update bash aliases
This commit is contained in:
parent
0ab7f0488c
commit
9c47eaba2a
1 changed files with 7 additions and 7 deletions
|
@ -69,13 +69,13 @@ for itm in $sel; do
|
||||||
'"man"')
|
'"man"')
|
||||||
echo "man() {" >> /etc/profile.d/alias.sh
|
echo "man() {" >> /etc/profile.d/alias.sh
|
||||||
echo " env \\" >> /etc/profile.d/alias.sh
|
echo " env \\" >> /etc/profile.d/alias.sh
|
||||||
echo " LESS_TERMCAP_mb=$(printf "\e[1;31m") \\" >> /etc/profile.d/alias.sh
|
echo " LESS_TERMCAP_mb=$(printf \"\\e[1;31m\") \\" >> /etc/profile.d/alias.sh
|
||||||
echo " LESS_TERMCAP_md=$(printf "\e[1;31m") \\" >> /etc/profile.d/alias.sh
|
echo " LESS_TERMCAP_md=$(printf \"\\e[1;31m\") \\" >> /etc/profile.d/alias.sh
|
||||||
echo " LESS_TERMCAP_me=$(printf "\e[0m") \\" >> /etc/profile.d/alias.sh
|
echo " LESS_TERMCAP_me=$(printf \"\\e[0m\") \\" >> /etc/profile.d/alias.sh
|
||||||
echo " LESS_TERMCAP_se=$(printf "\e[0m") \\" >> /etc/profile.d/alias.sh
|
echo " LESS_TERMCAP_se=$(printf \"\\e[0m\") \\" >> /etc/profile.d/alias.sh
|
||||||
echo " LESS_TERMCAP_so=$(printf "\e[1;44;33m") \\" >> /etc/profile.d/alias.sh
|
echo " LESS_TERMCAP_so=$(printf \"\\e[1;44;33m\") \\" >> /etc/profile.d/alias.sh
|
||||||
echo " LESS_TERMCAP_ue=$(printf "\e[0m") \\" >> /etc/profile.d/alias.sh
|
echo " LESS_TERMCAP_ue=$(printf \"\\e[0m\") \\" >> /etc/profile.d/alias.sh
|
||||||
echo " LESS_TERMCAP_us=$(printf "\e[1;32m") \\" >> /etc/profile.d/alias.sh
|
echo " LESS_TERMCAP_us=$(printf \"\\e[1;32m\") \\" >> /etc/profile.d/alias.sh
|
||||||
echo " man \"$@\"" >> /etc/profile.d/alias.sh
|
echo " man \"$@\"" >> /etc/profile.d/alias.sh
|
||||||
echo "}" >> /etc/profile.d/alias.sh
|
echo "}" >> /etc/profile.d/alias.sh
|
||||||
;;
|
;;
|
||||||
|
|
Loading…
Reference in a new issue