📄 nextfile.awk
字号:
# nextfile --- skip remaining records in current file# correctly handle successive occurrences of the same file## Arnold Robbins, arnold@skeeve.com, Public Domain# May, 1993# this should be read in before the "main" awk programfunction nextfile() { _abandon_ = FILENAME; next }_abandon_ == FILENAME { if (FNR == 1) _abandon_ = "" else next}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -