Skip to content

Instantly share code, notes, and snippets.

@asaph
Created June 2, 2015 20:27
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 asaph/799df6b387a29985bd69 to your computer and use it in GitHub Desktop.
Save asaph/799df6b387a29985bd69 to your computer and use it in GitHub Desktop.
Generate a TSV spreadsheet from a SQL command
#!/bin/sh
mysql databasename -h hostname -u username -p -B -e "select * from mytable;" > /tmp/myreport.tsv
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment