使用 shell 脚本获取 google 电子表格内容

使用 shell 脚本获取 google 电子表格内容

如果我在 Google 表格上创建具有特定网址的已发布表格https://docs.google.com/xxxx如何使用 shell 脚本提取该信息?我已经使用了命令

wget -O ABC.txthttp://地址.txt

从网页中提取信息,但该信息已经是 .txt 格式。创建另一个文本文件非常简单。但是,如果我使用类似的命令(使用 Google 网络链接),它会吐出所有无关紧要的网页内容;高度、字体、空白等。我想将表格提取到 txt 或 csv 文件中。有人这样做过吗?

答案1

尝试这个:

wget -O ABC.txt "https://docs.google.com/document/d/xxxxxx/export?format=txt"

相关内容