如何在 csh 中的 2 个字符串之间更改字符串?
How to change string between 2 string in 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
$ cat fixer.sed
#!/bin/sed -f
/set xx {/ , /}/ {
s@\(/.*\)\([^/]\)\(/[^/]*\)\( *[\]\)$@***@
}
/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
我有如下输入文件,我希望在 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
$ cat fixer.sed
#!/bin/sed -f
/set xx {/ , /}/ {
s@\(/.*\)\([^/]\)\(/[^/]*\)\( *[\]\)$@***@
}
/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