sed - スペースや underscores_word を置き換える方法

sed - スペースや underscores_word を置き換える方法

現在私はこのsedを持っています:

sed -i '/[^}.to]\.to[[:space:]]/ s/\(\S\)/expect(\1/' ../_spec_seded/"$file"

""(" "を除く)を含むexpect(行の先頭に " "を追加します。.to{.to

.to「」と「.to_not」に一致する行を作成するにはどうすればよいですか?

頑張った

sed -i '/[^}.to]\.to([[:space:]]|_not)/ s/\(\S\)/expect(\1/' my_file

デフォルトではOR一致を[[:space:]]試みますが、最初に期待値を追加するのではなく、両方を混乱させます。([[:space:]]|_not).to.to_not

ベストアンサー1

これはあなたが望むものですか?

sed '/{\.to/b;/\.to\(_not\|\)\s/s/^\s*/\0expect(/' file

代替:

sed '/{\.to/b;/\.to\(_not\|\)[[:space:]]/s/^[[:space:]]*/\0expect(/' file

サンプル:

$ diff -ytW 48 infile <(./sed_script)
.to do                 |  expect(.to do
  .to SPACE and        |    expect(.to SPACE and
        .to TAB        |          expect(.to TAB
some s                    some s
day x                     day x
.to r                  |  expect(.to r
.tofry                    .tofry
not t                     not t
.to     tab            |  expect(.to      tab
{.to not me               {.to not me
{.to nor me               {.to nor me
when e                    when e
        {.to Nope                 {.to Nope
.to_not BUT yes!       |  expect(.to_not BUT yes
  {.to Oh nono              {.to Oh nono
.to_notX                  .to_notX
.do s                     .do s
{.to not do me            {.to not do me
so d                      so d

|--- Original file ----|--- modified file ----|

おすすめ記事