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语法来做到这一点,但它没有用。
$ gawk '\|bash| { print } ' backup.sh gawk: |bash| { print } gawk: ^ syntax error
我正在尝试的正则表达式有很多斜杠。将它们全部转义会使它变得丑陋且不可读。我尝试将 / 更改为 | 但它没有用。
TIA
AWK 不支持。请改用变量。
gawk 'BEGIN {pattern = "/"} $0 ~ pattern {print}' backup.sh