在这里看到这样一段程序:
#include <stdio.h>
int main() {
puts(
#include "/dev/stdin"
);
return 0;
}
编译方法:
@awk '/@/{print " \"" $$_ "\\n\"" }' ../AUTHORS | \
gcc -o list_authors list_authors.c
如何理解那段awk脚本?
我知道awk的使用方法是:
awk 'pattern {action}' file
但是这里的@,$$_又该如何理解?
