recipe-backup-sheet-as-csv

recipe-backup-sheet-as-csv

熱門

將 Google Sheets 試算表匯出為 CSV 檔案,以便進行本地備份或處理。

2.7萬星標
1669分支
更新於 2026/3/31
SKILL.md
readonlyread-only
name
recipe-backup-sheet-as-csv
description

將 Google Sheets 試算表匯出為 CSV 檔案,以便進行本地備份或處理。

將 Google 試算表匯出為 CSV

先決條件: 載入以下技能以執行此配方:gws-sheetsgws-drive

將 Google Sheets 試算表匯出為 CSV 檔案,以便進行本地備份或處理。

步驟

  1. 取得試算表詳細資訊:gws sheets spreadsheets get --params '{"spreadsheetId": "SHEET_ID"}'
  2. 匯出為 CSV:gws drive files export --params '{"fileId": "SHEET_ID", "mimeType": "text/csv"}'
  3. 或直接讀取值:gws sheets +read --spreadsheet SHEET_ID --range 'Sheet1' --format csv