shell脚本,怎么实现每次新开一个shell都输出一个提示语?

Posted 王月波

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了shell脚本,怎么实现每次新开一个shell都输出一个提示语?相关的知识,希望对你有一定的参考价值。

[[email protected] wyb]# cat test.sh 
echo -e "\033[32mhello,This is wangyuebo‘s shell\033[0m"
echo -e "\033[32m`date`\033[0m"
LANG=en
echo -e "\033[32m`date` login at `hostname` `w`\033[0m" >>/etc/wangyuebo.log
[[email protected] wyb]# 

当写好了提示语在test.sh脚本里面,这时把脚本放到~/.bashrc文件里面就可以了 bash /root/wyb/test.sh

[[email protected] wyb]# cat ~/.bashrc
# .bashrc

# User specific aliases and functions

alias rm=rm -i
alias cp=cp -i
alias mv=mv -i

# Source global definitions
if [ -f /etc/bashrc ]; then
    . /etc/bashrc
fi
bash /root/wyb/test.sh
[[email protected] wyb]# 

然后在重新打开一个shell,就可以看到在test.sh设置的提示语了
Connecting to 192.168.16.110:22...
Connection established.
To escape to local shell, press Ctrl+Alt+].

Last login: Fri Sep  2 00:16:14 2016 from 192.168.16.101
hello,This is wangyuebos shell
Fri Sep  2 00:19:35 CST 2016
[[email protected] ~]# 

 

以上是关于shell脚本,怎么实现每次新开一个shell都输出一个提示语?的主要内容,如果未能解决你的问题,请参考以下文章

子shell

shell编程中的for循环如何实现

shell脚本实现转圈、进度条等效果

Linux - Shell - 免密码登录

Shell 脚本中调用另一个 Shell 脚本的三种方式

怎么用shell脚本实现多 条命令顺序执行?