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 插入:
M3_tmp="$(echo $M3 | sed 's/\./\\\/g')"
但我找不到解决方案
我有这个字符串:
sub.domain.com
并希望在每个点之前添加反斜杠,如下所示:
sub\.domain\.com
有谁能够帮我?谢谢你..
你应该使用
M3_tmp=$(echo $M3 | sed 's/\./\\./g')
反斜杠太多,缺少点:
echo $M3 | sed 's/\./\\./g'
如果您使用的是 bash,则可以使用参数扩展:
echo ${M3//./\\.}