mirror of
https://github.com/fish-shell/fish-shell.git
synced 2026-04-19 14:51:13 -03: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
|