Mac에 최신 GNU/Bash 및 gnu coreutils가 설치되어 있습니다.
$ bash --version
GNU bash, version 4.4.23(1)-release (x86_64-apple-darwin18.0.0)
ag 접두어로 coreutils를 확인하세요.
$ gls -l $(which gls)
lrwxr-xr-x 1 me admin 32 Oct 27 12:50 /usr/local/bin/gls -> ../Cellar/coreutils/8.30/bin/gls
때에 온다man
$ man gman
No manual entry for gman
오류가 반환됩니다.
$ man man
#works but get BSD manual in year 2003 as return.
coreutils는 GNU fileutils, shellutils 및 textutils로 구성되어 있으므로 매뉴얼에 확인할 솔루션이 있어야 합니다.
Bash에서 Gnu 매뉴얼을 어떻게 인용합니까?
답변1
macOS 컴퓨터에서 Homebrew와 함께 GNU coreutils를 설치하면 설치가 성공적으로 끝나면 다음 메시지가 표시됩니다.
All commands have been installed with the prefix 'g'.
If you really need to use these commands with their normal names, you
can add a "gnubin" directory to your PATH from your bashrc like:
PATH="/usr/local/opt/coreutils/libexec/gnubin:$PATH"
Additionally, you can access their man pages with normal names if you add
the "gnuman" directory to your MANPATH from your bashrc as well:
MANPATH="/usr/local/opt/coreutils/libexec/gnuman:$MANPATH"
==> Summary