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.
将 wp-admin 转换为 acceso08 在正常情况下可以正常工作,但在 #wp-admin: xx 这样的情况下不起作用。
代替s|wp-admin|acceso08|n
s|wp-admin|acceso08|n
注意末尾的“g”标志。
sed -e 's|wp-admin|acceso08|g' input_file > output_file
g 标志的详细信息:http: //www.grymoire.com/Unix/Sed.html#uh-6