我编译
jrc *.jr
是否有一个unix命令改变它给出的输出,而不是打印出以“Note:”开头的行?
grep -v "^Note:"
此外,您可能希望将stderr重定向到stdout:
command 2>&1 | grep -v "^Note:"