码迷,mamicode.com
首页 > 系统相关 > 详细

shell脚本学习总结10--系统函数调用

时间:2016-08-21 06:18:57      阅读:222      评论:0      收藏:0      [点我收藏+]

标签:

1.打印出彩色的格式

[root@new sbin]# cat demo.sh 
#/bin/bash
. /etc/init.d/functions
read -p "Pleas input your anwser[yes/no]: " an
if [[ $an = yes ]]
then 
   action "The answer is true" /bin/true
else 
   action "Then answer is false" /bin/false
fi

输出:

技术分享

shell脚本学习总结10--系统函数调用

标签:

原文地址:http://www.cnblogs.com/zydev/p/5791694.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!