mirror of
https://github.com/ItsDrike/dotfiles.git
synced 2024-11-10 02:39:40 +00:00
12 lines
243 B
Bash
Executable file
12 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
|