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.
我想从一个大文件中提取两个标签名称之间的部分文件。例如,我有一个名为 XXPOXPOEPO.txt 的文件,我只想要 * Blocks 和 * Items 之间的文件部分。如何将这两个标签名称作为参数传递给 sed 命令?
目前还不是很清楚您到底需要什么,但您可以在sed命令中使用 bash 变量。例如:
sed
$ start=2 $ seq -s ' ' 5 | sed "s/.*\($start\)/\1/" 2 3 4 5