I open a big file with this command: less +G /var/log/blah/file.log
Now when I find the desired info I'd like to know its exact offset in this file, so later I can open that file again and return to that exact place.
So there is the "%X" command which will take me to % inside the file, in offset terms (and not lines!). It's fine, but I'd really love to be able to move to exact, numeric, offset in the file.
What is the command to get the current offset?
And what is the command to move to a specific offset?
And if I'm at that already, how do I get the current offset in percent? (to be used with the "%" command).
Note that I know of marks. They aren't what I'm looking for.