docker-images/pluie/alpine/install.d/10-ps1.sh

14 lines
321 B
Bash
Raw Normal View History

2016-07-25 02:35:21 +00:00
#!/bin/bash
2016-08-06 00:29:06 +00:00
# @app pluie/alpine
# @author a-Sansara https://git.pluie.org/pluie/docker-images
2016-07-25 02:54:40 +00:00
2016-07-25 02:35:21 +00:00
if [ ! -f /root/.bash_ps1 ]; then
cat <<EOF >> /root/.bashrc
if [ -f ~/.bash_ps1 ]; then
. ~/.bash_ps1
fi
EOF
sed -n '1,22 p' /scripts/util.sh > /root/.bash_ps1
echo "bash_prompt" >> /root/.bash_ps1
fi