fish-shell/tests/test_functions/r2l.fish
Kurtis Rader 5809608bd2 implement chunked reads
Provide a more efficient method for reading lines (or null terminated
sequences) when the input is seekable.

Another partial fix for #2007
2017-01-14 20:51:54 -08:00

5 lines
75 B
Fish

function r2l
read line1
read line2
echo $line1 then $line2
end