Mainos / Advertisement:
Bashrc
Versio hetkellä 23. syyskuuta 2014 kello 12.04 – tehnyt Johannes (keskustelu | muokkaukset) (Ak: Uusi sivu: 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 i...)
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
Mainos / Advertisement: