Skip to content

Instantly share code, notes, and snippets.

@cvan
Created February 26, 2014 04:41
Show Gist options
  • Save cvan/9223667 to your computer and use it in GitHub Desktop.
Save cvan/9223667 to your computer and use it in GitHub Desktop.
install slimerjs (and test) on linux 64-bit
#!/usr/bin/env bash
curl -k -O http://download.slimerjs.org/v0.9/0.9.0/slimerjs-0.9.0-linux-x86_64.tar.bz2
tar -xjpvf slimerjs-0.9.0-linux-x86_64.tar.bz2
rm slimerjs-0.9.0-linux-x86_64.tar.bz2
mv slimerjs-0.9.0 slimerjs
echo "console.log('SlimerJS installed OK'); slimer.exit();" > test.js
slimerjs/slimerjs test.js
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment