如何在csh中的2字符串之间更改字符串?

时间:2019-07-19 15:08:46

标签: csh

我的输入文件如下,我希望在输出中显示的set xx { \}之间替换字符串。如何在csh中编码?

输入:

set a 1
set b 2
set xx { \
a/c/d \
apple/d/e/g \
guava/s/s/g/b/c \
}
set c 3

输出:

set a 1
set b 2
set xx { \
a/*c*/d* \
apple/d/*e*/g* \
guava/s/s/g/*b*/c* \
}
set c 3

1 个答案:

答案 0 :(得分:0)

$ cat fixer.sed
#!/bin/sed -f
        /set xx {/ , /}/ {
           s@\(/.*\)\([^/]\)\(/[^/]*\)\(  *[\]\)$@\1*\2*\3*\4@
        }

/set xx {/ , /}/是一个范围表达式,sed扫描每行,但仅在提供的范围之间的行上执行s@...@...@操作。

$ chmod +x fixer.sed  # only the first time you create file

输出

$ ./fixer.sed txt.txt
set a 1
set b 2
set xx { \
a/*c*/d* \
apple/d/*e*/g* \
guava/s/s/g/*b*/c* \
}
set c 3