From the command line:
man -t <manpage> | open -f -a Preview.app
-t outputs as postscript, which Preview automatically converts to PDF.
| # remove /usr/local/bin from /etc/paths | |
| export PATH="$PATH:s/\/usr\/local\/bin://" | |
| # add homebrew to environment | |
| if [ -x /usr/local/bin/brew ] | |
| then | |
| eval "$(/usr/local/bin/brew shellenv)" | |
| elif [ -x /opt/homebrew/bin/brew ] | |
| then | |
| export PATH="/usr/local/bin:/usr/local/sbin${PATH+:$PATH}" |
| docker images | awk '/^[a-z]/ { print $1}' | sed 's/.*/docker pull &/' | sh |