bahamat e Alan Curry hanno ragione: questo è dovuto al modo in cui la shell esegue il buffering dell'output echo
. In particolare, la tua shell è bash ed emette una write
chiamata di sistema per linea. Quindi il primo snippet esegue 1000000 scritture su un file su disco, mentre il secondo snippet esegue 1000000 scritture su una pipe e sed (in gran parte in parallelo, se si hanno più CPU) effettua un numero considerevolmente più piccolo di scritture su un file su disco a causa del suo output buffering.
Puoi osservare cosa sta succedendo eseguendo strace .
$ strace -f -e write bash -c 'echo -n a\ {1..2}\ c$'\'\\n\'' >file'
write(1, "a 1 c\n", 6) = 6
write(1, " a 2 c\n", 7) = 7
$ strace -f -e write bash -c 'echo -n a\ {1..2}\ c$'\'\\n\'' | sed "s/^ //" >file'
Process 28052 attached
Process 28053 attached
Process 28051 suspended
[pid 28052] write(1, "a 1 c\n", 6) = 6
[pid 28052] write(1, " a 2 c\n", 7) = 7
Process 28051 resumed
Process 28052 detached
Process 28051 suspended
[pid 28053] write(1, "a 1 c\na 2 c\n", 12) = 12
Process 28051 resumed
Process 28053 detached
--- SIGCHLD (Child exited) @ 0 (0) ---
Altre shell come ksh bufferizzano l'output echo
anche quando è multilinea, quindi non vedrai molta differenza.
$ strace -f -e write ksh -c 'echo -n a\ {1..2}\ c$'\'\\n\'' >file'
write(1, "a 1 c\n a 2 c\n", 13) = 13
$ strace -f -e write ksh -c 'echo -n a\ {1..2}\ c$'\'\\n\'' | sed "s/^ //" >file'
Process 28058 attached
[pid 28058] write(1, "a 1 c\n a 2 c\n", 13) = 13
Process 28058 detached
--- SIGCHLD (Child exited) @ 0 (0) ---
write(1, "a 1 c\na 2 c\n", 12) = 12
Con bash ottengo rapporti di temporizzazione simili. Con ksh vedo che il secondo frammento funziona più lentamente.
ksh$ time echo -n a\ {1..1000000}\ c$'\n' >file
real 0m1.44s
user 0m1.28s
sys 0m0.06s
ksh$ time echo -n a\ {1..1000000}\ c$'\n' | sed "s/^ //" >file
real 0m2.38s
user 0m1.52s
sys 0m0.14s