patman: Use less for help file, if available

It's convenient to be able to scroll up in `patman -H`.

Signed-off-by: Nicolas Boichat <drinkcat@chromium.org>
Reviewed-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
Nicolas Boichat 2021-02-17 18:41:43 +08:00 committed by Simon Glass
parent 3a03553aaa
commit b1b6efc343
1 changed files with 3 additions and 0 deletions

View File

@ -9,6 +9,7 @@
from argparse import ArgumentParser
import os
import re
import shutil
import sys
import traceback
import unittest
@ -170,6 +171,8 @@ elif args.cmd == 'send':
elif args.full_help:
pager = os.getenv('PAGER')
if not pager:
pager = shutil.which('less')
if not pager:
pager = 'more'
fname = os.path.join(os.path.dirname(os.path.realpath(sys.argv[0])),