Update bash aliases

This commit is contained in:
MatMoul 2017-06-11 17:29:25 +02:00
parent 0ab7f0488c
commit 9c47eaba2a

View file

@ -69,13 +69,13 @@ for itm in $sel; do
'"man"')
echo "man() {" >> /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_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_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_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_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_me=$(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_ue=$(printf \"\\e[0m\") \\" >> /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 "}" >> /etc/profile.d/alias.sh
;;