Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save nestorwheelock/731decc1cd5142f1001f90785013267e to your computer and use it in GitHub Desktop.
Save nestorwheelock/731decc1cd5142f1001f90785013267e to your computer and use it in GitHub Desktop.
case switches for refactoring Linux Bash scripts to FBSD
case $( uname ) in
(Linux)
# paste your old stuff here
;;
(FreeBSD)
# write new code here or copy with modifications if possible
;;
esac
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment