Skip to content

Instantly share code, notes, and snippets.

@intinig
Created April 20, 2012 21:34
Show Gist options
  • Select an option

  • Save intinig/2432037 to your computer and use it in GitHub Desktop.

Select an option

Save intinig/2432037 to your computer and use it in GitHub Desktop.
for page in ctags.1 ebrowse.1 emacs.1 emacsclient.1 etags.1 grep-changelog.1 rcs-checkin.1; do \
(cd ${thisdir}; \
/usr/local/bin/ginstall -c -m 644 /private/tmp/homebrew-emacs-HEAD-oYMj/doc/man/${page} /usr/local/Cellar/emacs/HEAD/share/man/man1/${page}; \
chmod a+r /usr/local/Cellar/emacs/HEAD/share/man/man1/${page}; \
if [ -n "yes" ] && [ -n "/usr/bin/gzip" ]; then \
rm -f /usr/local/Cellar/emacs/HEAD/share/man/man1/${page}.gz; \
/usr/bin/gzip -9n /usr/local/Cellar/emacs/HEAD/share/man/man1/${page}; \
else true; fi ); \
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment