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. 例如:
sed
address = www.abc.com
我想用mail.whatever.net.
mail.whatever.net
如果您想替换所有出现的www.abc.com,mail.whatever.net只需使用
www.abc.com
sed "s/www\.abc\.com/mail.whatever.net/g"
或者如果您可以替换地址行:
sed "s;^address = .*;address = mail.whatever.net;"