//コマンドラインの内容を表示 #include <stdio.h> int main(int count,char*args[]){ int i; for(i=0;i<count;i++){ printf("%s\n",args[i]); } return 0; } //処理結果 //$ ./commandLine.exe -a -b -c -d //./commandLine //-a //-b //-c //-d