mirror of
https://github.com/Erreur32/cheat.git
synced 2024-10-31 21:11:07 +01:00
10 lines
312 B
Plaintext
10 lines
312 B
Plaintext
# To disable the terminal refresh when exiting
|
|
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.
|