cristoper / gsheet

gsheet is a CLI tool (and Golang package) for piping csv data to and from Google Sheets
MIT License
83 stars 5 forks source link

csv trailing empty fields are lost #10

Open vimagick opened 4 months ago

vimagick commented 4 months ago

It's a small issue.

a b c
1 3
4
7 8
$ gsheet csv --id spreadsheetId --range sheetTitle
a,b,c
1,,3
4
7,8

Expected output:

a,b,c
1,,3
4,,
7,8,