什么是unix命令,无论给出什么参数,它总是会返回什么?

时间:2010-10-23 17:51:29

标签: unix shell

我想把它放在unix可执行文件的顶部。在#!

之后

我知道这看起来很傻,但我想提出建议。

6 个答案:

答案 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)

答案 3 :(得分:0)

也许

 abort //does not return

或可能

test true //returns 0
test false // returns 1
test       // returns 1

答案 4 :(得分:0)

为什么不在同一个目录中创建自己的?

答案 5 :(得分:0)

尝试空的反引号

``

echo $?

给出0。