2
0
Fork 0
mirror of https://github.com/fish-shell/fish-shell synced 2025-02-15 13:38:38 +00:00
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 
2017-01-14 20:51:54 -08:00

5 lines
75 B
Fish

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