Is there a way to write to a Google docs spreadsheet from the Linux shell?

google-docs, google-docs-api, google-drive-api, linux, shell

Solution

For that you have the Google Documents List API

Example code at Write to a Google Spreadsheet from a Python script

Problem

I have a cron job that exports some data to CSV every day. Is it possible to write this data directly to a Google doc (spreadsheet) from the Linux shell (Ubuntu)?

Original source