1
0
Fork 0
mirror of https://gitlab.com/dwt1/dotfiles.git synced 2023-02-13 20:55:19 -05:00
dwt1--dotfiles/macho-gui.sh
2020-07-11 17:57:38 -05:00

12 lines
281 B
Bash
Executable file

#!/bin/sh
manual=$(apropos -s ${SECTION:-''} ${@:-.} | \
grep -v -E '^.+ \(0\)' |\
awk '{print $2 " " $1}' | \
sort | \
dmenu -i -p "Manual: " | \
sed -E 's/^\((.+)\)/\1/')
if [ -z "$MANUAL" ]; then
man -T${FORMAT:-pdf} $manual | ${READER:-zathura -}
fi