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.
无论如何,将这两个简化为一个:
temp=${i//[/\\[} temp=${temp//]/\\]}
输入:
i[1] i[2]
输出:
i\[1\] i\[2\]
sed 's/[][]/\\&/g' foo.txt
[
]
\