Questions tagged «exit»

7
命令的日志退出代码,类似于time命令
使用 time sleep 1 产量: $ time sleep 1 real 0m1.005s user 0m0.001s sys 0m0.001s 有没有我可以用来打印退出代码的sleep命令或我想运行的任何命令? 喜欢的东西: $ log-exit-code sleep 1 也许这足够了? sleep 1 && echo "$?"
10 exit  exit-status 

4
PIPE使用的Bash退出状态
我试图了解使用管道时如何传达退出状态。假设我要which用来查找不存在的程序: which lss echo $? 1 由于which找不到位置,lss我的退出状态为1。这很好。但是,当我尝试以下操作: which lss | echo $? 0 这表明最后执行的命令已正常退出。我能理解的唯一方法是,也许PIPE也会产生退出状态。这是正确的理解方式吗?
10 bash  shell-script  pipe  exit 

2
为什么返回-1时出现255错误255
我是C ++编程的新手,我有一个非常基本的问题。我注意到,当我返回-1C ++程序然后检查退出状态时,我得到了255。这是为什么? 该代码是最基本的: int main() { return -1; } 然后,在运行编译的代码之后: echo $? 255
10 shell  exit 

4
为什么无法在此bash脚本中获得命令的退出值?
因此,我正在编写此鹦鹉螺脚本,用于将视频转码为mp3: #! /bin/bash -x if [ -z "$1" ] then zenity --warning --text="Error - No file selected !" exit 1 fi BASEFILENAME=${1%.*} exec ffmpeg -i "$1" -ab 256k "$BASEFILENAME.mp3" && if [ "$?" -eq 0 ] then zenity --info --text="Converting successful" exit fi 问题是,尽管ffmpeg命令成功执行了 if [ "$?" -eq 0 ] …
9 shell  exit 

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.