Skip to content

Instantly share code, notes, and snippets.

@smelendez
Created December 3, 2012 16:51
Show Gist options
  • Save smelendez/4196249 to your computer and use it in GitHub Desktop.
Save smelendez/4196249 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