mirror of
https://github.com/bytedance/g3.git
synced 2026-05-17 03:57:11 +00:00
13 lines
86 B
Awk
13 lines
86 B
Awk
|
|
BEGIN {}
|
|
|
|
$1 ~ "^#.*" {
|
|
next;
|
|
}
|
|
|
|
{
|
|
print " "$1", /* "$2" - "$5" */";
|
|
}
|
|
|
|
END {}
|
|
|