15 lines
334 B
Bash
15 lines
334 B
Bash
rm ../../.bash* ../../.profile /root/.bash* /etc/nanorc
|
|
|
|
ln ./.bash* /root
|
|
ln ./.bash* ../../
|
|
ln ./.profile ../../
|
|
|
|
rm /root/.bashrc
|
|
cp .bashrc /root
|
|
|
|
cat << EOF >> /root/.bashrc
|
|
PS1='${debian_chroot:+($debian_chroot)}\[\033[01;31m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]\$ '
|
|
EOF
|
|
|
|
ln ./nanorc /etc/nanorc
|
|
apt install fzf -y
|