mirror of
https://github.com/fish-shell/fish-shell.git
synced 2025-02-15 19:42:49 +08:00
8 lines
105 B
Fish
8 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
|