8 lines
125 B
Plaintext
8 lines
125 B
Plaintext
|
#!/bin/csh
|
||
|
if ( x"$1" == "x-h" ) then
|
||
|
echo Converts each newline character to a space.
|
||
|
exit
|
||
|
endif
|
||
|
|
||
|
awk '{printf $0 " "}'
|