mirror of https://github.com/cheat/cheat.git
Add cheat on how to dump content of less to file
This commit is contained in:
parent
3be95142ed
commit
13fdcec332
|
@ -1,2 +1,9 @@
|
||||||
# To disable the terminal refresh when exiting
|
# To disable the terminal refresh when exiting
|
||||||
less -X
|
less -X
|
||||||
|
|
||||||
|
# To save the contents to a file
|
||||||
|
# Method 1 - Only works when the input is a pipe
|
||||||
|
s <filename>
|
||||||
|
|
||||||
|
# Method 2 - This should work whether input is a pipe or an ordinary file.
|
||||||
|
Type g or < (g or less-than) | $ (pipe then dollar) then cat > <filename> and Enter.
|
||||||
|
|
Loading…
Reference in New Issue