開發平台(Platform): (Ex: Win10, Linux, ...)
linux
編譯器(Ex: GCC, clang, VC++...)+目標環境(跟開發平台不同的話需列出)
gcc / g++
額外使用到的函數庫(Library Used): (Ex: OpenGL, ...)
no
問題(Question):
一些原因,我必須取得某個執行檔的 return code,
即 echo $? 之值 但就是不想用 echo $? 去 pipe。
我查過了 cplusepluse.com 對 system 之說明,沒
意會錯的話應是說若呼叫該 command 失敗傳回 -1;
呼叫成功的話會是該 exe / library 之傳回值,
也就是 main 的傳回值。於是我寫了二份 code 做測試
/// code 1 : test.cpp
int main(int argc, char **argv) {
return argc;
}
/// code 2 : test2.cpp
#include <cstdio>
#include <cstdlib>
int main(int argc, char ** argv) {
printf("%d\n", system(".....ERRORCMD...."));
printf("%d\n", system("./test"));
printf("%d\n", system("./test 1"));
printf("%d\n", system("./test 1 2"));
return 0;
}
/// result
32512
256
512
768
這幾個數值看起來是用 bitwise 代表 status,
但和我預期傳回的
-1
1
2
3
有很大的落差 ,請問我是不是誤會什麼了?問題主要二個
(1) 不用 pipe 如何取得另一個執行檔之 return value ?
(2) 請問 system 之 return value 意義為何 ??-
先謝謝各位的不吝解惑。