mirror of
https://github.com/correl/dotfiles.git
synced 2024-11-15 11:09:29 +00:00
14 lines
199 B
Bash
14 lines
199 B
Bash
#!/bin/bash
|
|
# Description: Graphing tool
|
|
set -e
|
|
|
|
case $_PLATFORM in
|
|
darwin)
|
|
_recipe brew
|
|
_brew gnuplot
|
|
;;
|
|
*)
|
|
_recipe _apt
|
|
_apt gnuplot
|
|
;;
|
|
esac
|