我正在尝试在awk命令中添加OR运算符。以下不起作用。
# echo "* * * * * ls >> abc.txt 2>> abc.err" | awk -F'2>>' or -F'>>' '{print $2}'
awk: cmd. line:1: or
awk: cmd. line:1: ^ unexpected newline or end of string
答案 0 :(得分:2)
如果我理解你的问题:
$ echo "* * * * * ls >> abc.txt 2>> abc.err" | awk -F'2>>|>>' '{print $2}'
abc.txt