Files
bash/CWRU/old-conf/support/cat-s
T
2011-12-03 12:52:47 -05:00

17 lines
247 B
Plaintext

# This awk script is called from within Makefile to strip multiple blank
# lines from stdin.
BEGIN { newlines = 0 }
{
if (NF == 0)
newlines = 1;
else
{
if (newlines)
{
printf "\n";
newlines = 0;
}
print $0;
}
}