Is there a sed alternative to paste? I am using
paste -s -d" " test2.txt > test2.tmp
to replace returns with spaces
but I read in the man pages that there is a limit of 511 characters. There might be instances where the output is longer than 511 characters.
Thanks
Dodge20
paste -s -d" " test2.txt > test2.tmp
to replace returns with spaces
but I read in the man pages that there is a limit of 511 characters. There might be instances where the output is longer than 511 characters.
Thanks
Dodge20