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 が貪欲でない検索をサポートしていないことを知っていますが、次のものを置き換える賢い正規表現があるかもしれません
VARIABLE=" text1 text2 text3 "
と
VARIABLE=" Atext1 Atext2 Atext3 "
今のところ、最初の試合のみを置き換えることができます。
変数の内容を置き換えたいと思います:
VARIABLE=$(sed 's/./A&/' <<< "$VARIABLE")