mirror of
https://github.com/Homebrew/brew.git
synced 2025-07-14 16:09:03 +08:00
9 lines
236 B
Bash
Executable File
9 lines
236 B
Bash
Executable File
#!/bin/bash
|
|
|
|
POD2MAN="$(type -P pod2man5.18 ||
|
|
type -P pod2man5.16 ||
|
|
type -P pod2man5.12 ||
|
|
type -P "$HOMEBREW_PREFIX/opt/pod2man/bin/pod2man" ||
|
|
echo /usr/bin/pod2man)"
|
|
exec "$POD2MAN" "$@"
|