fish-shell/benchmarks/benchmarks/read.fish
2023-06-01 18:15:42 +02:00

7 lines
105 B
Fish

set -l tmp (mktemp)
string repeat -n 2000 >$tmp
for i in (seq 1000)
cat $tmp | read -l foo
end
true