#!/bin/bashecho"This script deletes `benchmark`, clones it from github, together"echo"with its dependencies. It then removes .git* files and dirs."echo"NOTE!!!"echo"Please double-check the benchmark github wiki for any changes"echo"to dependencies. Currently, these are limited to googletest."echoread-p"Press a key to continue, or Ctrl+C to cancel"rm -rf benchmarkgit clone https://github.com/google/benchmark.gitrm -rf benchmark/.git*find benchmark/ -name BUILD -deletefind benchmark/ -name BUILD.bazel -delete