判断文件描述词是否是为终端机
ttyname
#include<unistd.h>
int isatty(int desc);
如果参数desc所代表的文件描述词为一终端机则返回1,否则返回0。
如果文件为终端机则返回1,否则返回0。
参考ttyname()。