mirror of
https://github.com/ItsDrike/dotfiles.git
synced 2025-05-03 23:08:35 +00:00
6 lines
160 B
Bash
Executable file
6 lines
160 B
Bash
Executable file
#!/bin/sh
|
|
|
|
# Dmenu prompt to easily search for a man page to open
|
|
|
|
page="$(apropos --long "$1" | dmenu -i -l 10 | awk '{print $2, $1}' | tr -d '()')"
|
|
man $page
|