/bin/true /bin/false作用

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了/bin/true /bin/false作用相关的知识,希望对你有一定的参考价值。

/bin/true /bin/false是linux系统自带的程序
/bin/true返回的是 0
/bin/false返回的是 1 (也有说是非0值)

一般用于自写脚本根据自己的逻辑来设置 $? 的值


例子

/bin/true
echo $?
#结果
0

/bin/false
echo $?
#结果
1

使用说明

#两个function,这两个函数引用了 /etc/init.d/functions ,使用了action函数
#
[server]-[root@arrow ~]$action "test" /bin/true ;echo $?
test                                                       [  OK  ]
0

[server]-[root@arrow ~]$action "test" /bin/false ;echo $?
test                                                       [  OK  ]
1

#注意下面实际echo $? 返回的 0  是action的结果
#上面的两条返回的是true false的结果
[server]-[root@arrow ~]$action "test"  ;echo $?
test                                                       [  OK  ]
0

------------------------------------------------------------------------------------------------------
Start_nginx(){
if [ -f $pidfile ];then
        echo "Nginx is running"
else
        /usr/local/nginx/sbin/nginx &>/dev/null
        action "Nginx is Started" /bin/true
fi
}
###########################################################
Stop_Nginx(){
if [ -f $pidfile ];then
        /usr/local/nginx/sbin/nginx -s stop &>/dev/null
        action "Nginx is Stopped" /bin/true
else
        action "Nginx is Stopped" /bin/false
fi
}

以上是关于/bin/true /bin/false作用的主要内容,如果未能解决你的问题,请参考以下文章

一片大好怎么样(效果好吗)副作用大不大

ElasticJob分片机制

论时间片与定时器

3.springboot:springboot配置文件(配置文件YAML属性文件值注入<@Value@ConfigurationProperties@PropertySource,@Im(代码片

3springboot:springboot配置文件(配置文件YAML属性文件值注入<@Value@ConfigurationProperties@PropertySource,@Imp(代码片

/bin/true 是啥?