Skip to content

Instantly share code, notes, and snippets.

View d-amend's full-sized avatar

David Amend d-amend

  • Universität Siegen
  • Siegen
View GitHub Profile
@d-amend
d-amend / make-doc
Last active May 19, 2021 11:34 — forked from publicarray/make-doc
Make a FreeBSD Handbook docset for Dash
#!/bin/bash
# thank you publicarray for the main work - this script is just a minor adaption
set -e
if ! command -v dashing >/dev/null 2>&1; then
if command -v go >/dev/null; then
brew install dashing
else
echo "Missing go. Install golang first 'brew install golang'"