Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
请你帮帮我,我正在尝试从文件末尾删除一些数据,比如 file.oot。
我想使用 tail 命令,返回除最后 n 行之外的所有内容。我想将此限制为作为 csh 脚本的一部分的单行命令。有没有办法用 tail 命令做到这一点,如果没有,还有其他选择吗?
返回相反的命令:
tail -10 file.oot > new_file.oot
谢谢
看来我是从错误的方向(字面意思)接近这个,应该使用 head. 使用以下代码可以实现我的目标。
head -n -10 file.oot > new_file.oot