bin/h

11 lines
212 B
Bash
Executable File

#!/bin/sh
# h - display help page for program
# based on https://hg.sr.ht/~sietsebb/dotfiles/browse/bin/h?rev=tip
man $1 ||
$1 --help 2>&1 | less ||
$1 -h 2>&1 | less ||
echo "no help page for $1"