While in vim
I can write a range of lines from the file I'm viewing to another file. For example,
:1,10 w outfile.txt
will write lines 1 through 10 to outfile.txt.
Can I do the same while I'm viewing a file using less
?
While in vim
I can write a range of lines from the file I'm viewing to another file. For example,
:1,10 w outfile.txt
will write lines 1 through 10 to outfile.txt.
Can I do the same while I'm viewing a file using less
?
10Gmm1G|mcat > outfile.txt
(typed within less
) seems to work as long as the input doesn't fit in one screen (in which case all the input ends up in outfile.txt
for some reason).
10G
brings you to line 10
mm
sets the m
mark there1G
(same as g
in this case) brings you to line 1|m
pipe from the current line to mark m
cat > outfile.txt
: that's piped to that command.You could use view
which is the same as vi -r
less
-- it is my understanding that vi
causes the whole file to load at once.
– eebbesen
Feb 17 '14 at 16:59
10G
brought me to the 10th line before I could type the rest, but it did indeed work. – eebbesen Feb 17 '14 at 16:57