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.
我有一个管道 unix 脚本,它最终在主题文件中为我生成了一个行号。 现在,我需要从这一行到最后打印出文件内容。 是否可以通过 xargs 将行号提供给 sed,以便 sed 打印出所需的。
.....|tail -1 | cut -f 1 | xargs sed ...?
这可能吗?
..... | tail -1 | cut -f 1 | xargs -i sed -n '{},$p' your_file