gpt4 book ai didi

linux - 为什么 tail 在这里不起作用?

转载 作者:太空宇宙 更新时间:2023-11-04 04:37:16 24 4
gpt4 key购买 nike

我的csh脚本

#!/bin/csh
# C-schell script to increase the boundingbox....

echo '%\!PS-Adobe-3.0 EPSF-3.0'
echo '%%BoundingBox: 0 0 1100 1100'
tail +3 $argv[1]

在这里调用

csh bbox.csh plt >! plt_P1.ps

但是我有

csh -f bbox.csh plt
tail: cannot open ‘+3’ for reading: No such file or directory

tail 应该做什么?编写代码的人使用 Darwin,我使用的是 Ubuntu 14.04。

最佳答案

GNU tail 不支持此语法。请改用 tail -n +3 "$argv[1]"

如果您正在使用例如bash、dash 或 zsh 作为 shell:您还需要在命令行中将 >! 修改为 >:

csh bbox.csh plt > plt_P1.ps

关于linux - 为什么 tail 在这里不起作用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34930514/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com