5 lines
134 B
Bash
Executable file
5 lines
134 B
Bash
Executable file
#!/bin/sh
|
|
# Grep through all manuals
|
|
manual=$1
|
|
shift
|
|
find /usr/share/man -name "*$manual*" | xargs gunzip -c | grep "$@" --color=auto
|