/etc/skel/.bashrc: don't be annoying when using sudo
parent
07069eded2
commit
7cc802fb3d
|
@ -56,12 +56,6 @@ function print_header() {
|
|||
echo " "
|
||||
}
|
||||
|
||||
function reset_shell() {
|
||||
clear
|
||||
update_bashrc
|
||||
print_header
|
||||
}
|
||||
|
||||
function update_bashrc() {
|
||||
cp -f /etc/skel/.bashrc ~/.bashrc
|
||||
}
|
||||
|
@ -108,4 +102,9 @@ if ! shopt -oq posix; then
|
|||
fi
|
||||
|
||||
# Hello, world!
|
||||
reset_shell
|
||||
if [[ ! -z $SUDO_USER ]]; then
|
||||
clear
|
||||
print_header
|
||||
fi
|
||||
|
||||
update_bashrc
|
||||
|
|
Loading…
Reference in New Issue