mirror of
https://github.com/fish-shell/fish-shell
synced 2024-12-31 23:28:45 +00:00
7 lines
105 B
Fish
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
|