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.
とにかく、これら2つを1つに単純化するには:
temp=${i//[/\\[} temp=${temp//]/\\]}
入力:
i[1] i[2]
出力:
i\[1\] i\[2\]
sed 's/[][]/\\&/g' foo.txt
[
]
\