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.
你能帮我写一个 sed 命令从文件中删除价格吗?
输入:
1 台打印机 2 网络交换机 1 82 磅 A4 纸边 20 美元
输出:
1 台打印机 2 网络交换机 1 82 磅 A4 纸边
20 美元从输出中消除。
假设您的数据在 /tmp/foo 中:
sed '/^\$/d' /tmp/foo
使用模式匹配查找以美元符号开头的行,然后从模式空间中删除这些行并开始下一个循环。