filter

来自「编译工具」· 代码 · 共 13 行

TXT
13
字号
#!/usr/bin/env perl# Chops out all blank lines in the input file, to ease# comparisons with diff. Should decrease the false-negative# regression test rate#while (<>){    next if (/^\s*$/);    print;}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?