I have a very big text log file of about 37MB.
Using cat file | more I can view the file contents one page at a time.
The problem is that this always starts from the top - the old entries.
How can I make it start from the bottom where the newer entries are then move up page by page?
tacstarts at the bottom but I can't get a way to go up a screen.less some-file +Gdoesn't seem to work. – Parto Feb 23 '15 at 06:04less +G some-file. – muru Feb 23 '15 at 06:15less +Gseems more natural when viewing command line history, for example. Something like this:alias h='history -999999 | less +G'– Ville Dec 11 '16 at 22:42