Mainos / Advertisement:

Bashrc

Kohteesta Taisto
Versio hetkellä 27. syyskuuta 2014 kello 13.09 – tehnyt Minh (keskustelu | muokkaukset)
Siirry navigaatioon Siirry hakuun

Muokkaamalla /etc/bash.bashrc tiedostoa voi tehdä kaikkea hauskaa bashille

nano /etc/bash.bashrc

nyt siellä alussa on näin

[ -z "$PS1" ] && return
shopt -s checkwinsize
if [ -z "${debian_chroot:-}" ] && [ -r /etc/debian_chroot ]; then
   debian_chroot=$(cat /etc/debian_chroot)
fi

Muokataan siitä tällainen:

[ -z "$PS1" ] && return
shopt -s checkwinsize
if [ $(id -u) -eq 0 ];
then
PS1="\\[$(tput setf 5)\\]\\u@\\H:\\w #\\[$(tput sgr0)\\]"
else
PS1="[\\u@\\h:w] $"
fi

Jos haluat sallia kaikille käyttäjille, muokkaa

 /home/%USERNAME%/.bashrc

ja poista risuaita

 force_color_prompt=yes
Mainos / Advertisement: