add directory bin
This commit is contained in:
16
bin/old/bash-1.11/support/cat-s
Normal file
16
bin/old/bash-1.11/support/cat-s
Normal file
@@ -0,0 +1,16 @@
|
||||
# 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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user