Skip to content

Instantly share code, notes, and snippets.

@antonbabenko
Created October 2, 2014 17:16
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 antonbabenko/d0c82096f4c2e660694a to your computer and use it in GitHub Desktop.
Save antonbabenko/d0c82096f4c2e660694a to your computer and use it in GitHub Desktop.
Print current Varnish version sha (tested with version 4)
#!/bin/sh
{ varnishd -V; } 2> version_file ; cat version_file | head -1 | awk '{ print out substr($4, 0, 7) }'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment