cristoper/gsheet

csv trailing empty fields are lost

vimagick opened this issue · 0 comments

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,