Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>So, I went through and tested/timed some of the answers that were given by other people, plus a python answer of my own. Here is what I got:</p> <p><strong>tr:</strong></p> <pre><code>&gt; time tr "\n" "," &lt; lines &gt; line real 0m1.617s user 0m0.100s sys 0m1.520s </code></pre> <p><strong>python:</strong></p> <pre><code>&gt; time python -c 'import sys; print sys.stdin.read().replace("\n",", "),' &lt; lines &gt; line real 0m1.663s user 0m0.060s sys 0m1.610s </code></pre> <p><strong>awk:</strong></p> <pre><code>&gt; time awk '{printf("%s, ", $0)}' lines &gt; line real 0m1.998s user 0m0.390s sys 0m1.600s </code></pre> <p><strong>perl:</strong></p> <pre><code>&gt; time perl -e 'while (&lt;&gt;) { chomp; print "$_, " }' lines &gt; line real 0m2.100s user 0m0.590s sys 0m1.510s </code></pre> <p><strong>sed:</strong></p> <pre><code>&gt; time sed 's/$/, /g' lines &gt; line real 0m6.673s user 0m5.050s sys 0m1.630s </code></pre> <p>Here is the file I used:</p> <pre><code>&gt; ls -lh lines -rw-r--r-- 1 some one 101M 2010-03-04 19:54 lines &gt; wc -l &lt; lines 1300000 &gt; head -n 3 &lt; lines The pretty pink puma pounced on the unsuspecting aardvark, the scientist watched. The pretty pink puma pounced on the unsuspecting aardvark, the scientist watched. The pretty pink puma pounced on the unsuspecting aardvark, the scientist watched. &gt; head -n 1 &lt; lines | wc -c 82 </code></pre> <p>Originally the timings were taken in cygwin, they have now been taken with fully updated ubuntu 9.10. Also, the text files size was increased to 100 megs, with lines 80ish characters wide. As you can see pretty much anything other than sed is a good idea.</p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    3. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload