免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 3538 | 回复: 1
打印 上一主题 下一主题

perl读写文件Inappropriate ioctl for device算是perl的一个bug?? [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2010-10-27 21:16 |只看该作者 |倒序浏览
本帖最后由 027xiatian 于 2010-10-28 12:31 编辑

Code:

           use FileHandle;

           $fh = new FileHandle;
           if ($fh->open("< file")) {
               print "info:$!\n"
               print <$fh>;
               $fh->close;
           }

在终端环境下打开任何文件,$! 都会是Inappropriate ioctl for device

When Perl opens a file, it checks whether or not the terminal is a TTY (so that it can answer the -T $fh filetest operator) by issuing the TCGETS ioctl against it. If the file is a regular file and not a tty, the ioctl fails and sets errno to ENOTTY (string value: "Inappropriate ioctl for device"). As ysth says, the most common reason for seeing an unexpected value in $! is checking it when it's not valid -- that is, anywhere other than immediately after a syscall failed, so testing the result codes of your operations is critically important.

论坛徽章:
0
2 [报告]
发表于 2010-10-28 10:22 |只看该作者
"< file"
这个不就是个文件名吗?
不懂
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP