SMarcell
(usa Slackware)
Enviado em 25/09/2008 - 01:41h
----------
bwnotyelc
----------
Você pode utilizar o tr, da seguinte maneira:
$ tr '\n' ' ' < links.txt > saida.txt
Ou então o sed:
$ sed ':a;N;$!ba;s/\n/ /g' < links.txt > saida.txt
Ou ainda =)
$ echo -n $(cat links.txt) > saida.txt