Delete Line Feed Code by DOS and Bash
Input JSON text.txt : { "values": [ [ "a1", "b1", "c1" ], [ "a2", "b2", "c2" ], [ "a3", "b3", "c3" ], [ "a4", "b4", "c4" ], [ "a5", "b5", "c5" ] ] } Windows DOS type text.txt | jq -c "." Linux Bash $ cat text.
Input JSON text.txt : { "values": [ [ "a1", "b1", "c1" ], [ "a2", "b2", "c2" ], [ "a3", "b3", "c3" ], [ "a4", "b4", "c4" ], [ "a5", "b5", "c5" ] ] } Windows DOS type text.txt | jq -c "." Linux Bash $ cat text.
gogauth is a CLI tool to easily retrieve access token for using APIs on Google. I thought that if the access token can easily retrieve, it may be useful for users who can use various convenience Google APIs. So I created this. Also this can be used for testing sample script like the demo. If this will be helpful for you, I’m glad. Today, it was updated to v2.0.1. Please check it out.
This is a sample script for OCR using Google Drive API. A text file which converted by OCR can be retrieved by inputting an image file. In this sample, Python Quickstart is used. The detail information is https://developers.google.com/drive/v3/web/quickstart/python. Please read “Step 1: Turn on the Drive API” and “Step 2: Install the Google Client Library”. from __future__ import print_function import httplib2 import os import io from apiclient import discovery from oauth2client import client from oauth2client import tools from oauth2client.
This is a sample script for converting a PDF file to a TXT file. 2 steps are required for this. Upload a PDF file as a Google Document Download a Google Document as a TXT file In this sample, Python Quickstart is used. The detail information is https://developers.google.com/drive/v3/web/quickstart/python. Please read “Step 1: Turn on the Drive API” and “Step 2: Install the Google Client Library”. from __future__ import print_function import httplib2 import os import io from apiclient import discovery from oauth2client import client from oauth2client import tools from oauth2client.
Updated ggsrun to v.1.1.0 Added a command for updating existing project on Google Drive. One of scripts in the project can be also updated. https://github.com/tanaikech/ggsrun