#include <unistd.h>
int main(int argc, char* argv[])
{
char buf[500];
read(0, buf, 5);
return 0;
}
從stdin
上面read
5個字符,但如果I輸入比5
更多:這種行爲是由標準定義的嗎?
12345morethan5
[[email protected] test]# morethan5
-bash: morethan5: command not found
其餘字符將被作爲外殼命令執行。
這種行爲是由標準定義的嗎?
您可能會發現本節3.3.2一個有趣參閱http:/ /www.aosabook.org/en/bash.html – Joe