dotfiles/.local/bin/scripts/grepman

6 lines
134 B
Text
Raw Normal View History

2021-05-20 12:15:04 +02:00
#!/bin/sh
2021-07-29 16:02:20 +02:00
# Grep through all manuals
2022-12-13 13:25:04 +01:00
manual=$1
shift
find /usr/share/man -name "*$manual*" | xargs gunzip -c | grep "$@" --color=auto