作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
$ perl -pe 1 foo && echo ok
Can't open foo: No such file or directory.
ok
最佳答案
-p switch只是在此循环中包装代码(-e 后面的参数)的快捷方式:
LINE:
while (<>) {
... # your program goes here
} continue {
print or die "-p destination: $!\n";
}
<>
空运算符等价于
readline *ARGV
, 并连续打开每个参数作为要读取的文件。没有办法影响那个隐式打开的错误处理,但你可以使
warning it emits致命(注意,这也会影响与 -i 开关相关的几个警告):
perl -Mwarnings=FATAL,inplace -pe 1 foo && echo ok
关于perl - 找不到输入文件时,如何最好地(惯用地)使 perl 脚本(使用 -n/-p 运行)失败?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59217670/
我是一名优秀的程序员,十分优秀!