dotfiles/recipes/gnuplot

15 lines
199 B
Text
Raw Normal View History

2019-08-29 18:44:57 +00:00
#!/bin/bash
# Description: Graphing tool
set -e
case $_PLATFORM in
darwin)
_recipe brew
_brew gnuplot
;;
*)
_recipe _apt
_apt gnuplot
;;
esac