我想把它放在unix可执行文件的顶部。在#!
我知道这看起来很傻,但我想提出建议。
答案 0 :(得分:11)
大多数系统都有/usr/bin/false
NAME
false -- Return false value.
SYNOPSIS
false
DESCRIPTION
The false utility always exits with a nonzero exit code.
SEE ALSO
csh(1), sh(1), true(1)
STANDARDS
The false utility conforms to IEEE Std 1003.2-1992 (``POSIX.2'').
答案 1 :(得分:4)
听起来像是“冒号”内置的作业
: [arguments] No effect; the command does nothing beyond expanding arguments and performing any specified redirections. A zero exit code is returned.
答案 2 :(得分:3)
您可以尝试cat /dev/null
答案 3 :(得分:0)
也许
abort //does not return
或可能
test true //returns 0
test false // returns 1
test // returns 1
答案 4 :(得分:0)
为什么不在同一个目录中创建自己的?
答案 5 :(得分:0)
尝试空的反引号
``
echo $?
给出0。