mirror of
https://github.com/ItsDrike/dotfiles.git
synced 2025-02-22 11:29:02 +00:00
11 lines
243 B
Bash
Executable file
11 lines
243 B
Bash
Executable file
#!/bin/sh
|
|
|
|
# Menu prompt to easily search for a man page to open
|
|
|
|
page="$(apropos --long "$1" | menuprompt --choose -p "Pick man page" | awk '{print $2, $1}' | tr -d '()')"
|
|
|
|
if tty -s; then
|
|
man "$page"
|
|
else
|
|
$TERMINAL -e man "$page"
|
|
fi
|