atat-mirror/glue/jobctrl/blanktonl

8 lines
170 B
Tcsh
Executable File

#!/bin/csh
if ( x"$1" == "x-h" ) then
echo Converts each contiguous sequence of blanks to a newline character.
exit
endif
sed "s/^[ ]*//g" | sed "s/[ ][ ]*/\\
/g"