90_outfilter (108B)
1 #!/bin/sh 2 #Filter empty lines at the beginning of the file 3 exec awk '/$^/ {if(a==0){next;}} {a=1;print $0}'