Skip to content

Instantly share code, notes, and snippets.

@gabmontes
Created August 7, 2017 17:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gabmontes/cfda98f0b344fe15eab1de392efa38c3 to your computer and use it in GitHub Desktop.
Save gabmontes/cfda98f0b344fe15eab1de392efa38c3 to your computer and use it in GitHub Desktop.
Gather information about the runtime environment
#!/usr/bin/env bash
date > env.log
lsb_release -a >> env.log
echo "node: $(node --version)" >> env.log
echo "nodejs: $(nodejs --version)" >> env.log
echo "npm: $(npm --version)" >> env.log
echo "git HEAD: $(git rev-parse --short HEAD)" >> env.log
git status >> env.log
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment