Skip to content

Instantly share code, notes, and snippets.

@slattery
Forked from smelendez/gettsv.sh
Created May 12, 2017 16:27
Show Gist options
  • Save slattery/eb5d8a661f5c22e66e390d853770e902 to your computer and use it in GitHub Desktop.
Save slattery/eb5d8a661f5c22e66e390d853770e902 to your computer and use it in GitHub Desktop.
Download a Google Spreadsheet as a TSV
#!/bin/bash
wget -O - 'https://docs.google.com/spreadsheet/pub?key=0AjUUa__FW_6RdERnMnBFX2xPQS01dC11WWxmQXhZcWc&single=true&gid=0&output=txt' | cut -f1,2,4 > spreadsheet.tsv
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment