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.
给定一个格式为 markdown 的文件,偶尔会穿插 PGP 块,如何在 shell 脚本中使用标准 linux 工具去除 PGP 块?
该文件看起来像这个要点
(由于格式问题,我不得不创建一个要点)
使用 sed 你可以做到这一点:
sed '/^-----BEGIN PGP/,/^-----END PGP/d' file
/pat1/,/pat2/简而言之:您在两个被删除的模式之间定义一系列线(d)。
/pat1/,/pat2/