在哪种情况下 "nice" 命令的 return 值将是 33?
In which condition "nice" command's return value will be 33?
"nice" 命令将 return 值设置为 33。请帮助我理解为什么 nice 将 return 值设置为 33。在某些系统中它工作得很好 return 值为 0,但在系统上它给我 return 值为 33。
nice -n -10 <doing some process here>
returnValue=$?
此处 returnValue 得到的值是 33,尽管是 0。
"nice" 命令将 return 值设置为 33。请帮助我理解为什么 nice 将 return 值设置为 33。在某些系统中它工作得很好 return 值为 0,但在系统上它给我 return 值为 33。
nice -n -10 <doing some process here>
returnValue=$?
此处 returnValue 得到的值是 33,尽管是 0。