Query your Google Drive with a Go command-line tool
Programming Snapshot – Google Drive Search Tool

© Lead Image © Alphaspirit, 123RF.com
To help him check his Google Drive files with three different pattern matchers, Mike builds a command-line tool in Go to maintain a meta cache.
My digital library of scanned paper books is stashed away as PDF files in an account on Google Drive. So far, Google has done an exemplary job of keeping my data available, but I just can't make friends with their search interface. In typical Google style, the browser shows you a search field that can be used to quickly browse the indexed full text of all the files in all the folders. However, getting a simple answer to the question of whether I already have a certain book in my archive is more difficult. To do this, I have to select the file names only and restrict the search to specific folders.
Fortunately, though, Google provides an intuitive API [1] to access user data in the Google Drive cloud. For quick checks, a command-line tool comes in handy. While we're at it, it's worth taking a trip into the world of pattern matchers, of which there are, as we all know, a wide variety. For example, the shell relies on a glob mechanism for matching, while programming languages typically rely on regular expressions (regexes). And sometimes, a simple string matcher like the grep
command is the most practical solution.
Parallel Regex Worlds
If you type ls *.jpg
on the command line, you expect the shell's match mechanism to find all files with a .jpg
extension. This pattern matching is fundamentally different from Perl Compatible Regular Expressions (PCRE) [2] used in programming languages. Funnily enough, they originated with the Perl scripting language many years ago, but all modern languages from Python to Java and C++ to Go support them as well.
[...]
Buy this article as PDF
(incl. VAT)
Buy Linux Magazine
Subscribe to our Linux Newsletters
Find Linux and Open Source Jobs
Subscribe to our ADMIN Newsletters
Support Our Work
Linux Magazine content is made possible with support from readers like you. Please consider contributing when you’ve found an article to be beneficial.

News
-
System76 Releases COSMIC Alpha 7
With scores of bug fixes and a really cool workspaces feature, COSMIC is looking to soon migrate from alpha to beta.
-
OpenMandriva Lx 6.0 Available for Installation
The latest release of OpenMandriva has arrived with a new kernel, an updated Plasma desktop, and a server edition.
-
TrueNAS 25.04 Arrives with Thousands of Changes
One of the most popular Linux-based NAS solutions has rolled out the latest edition, based on Ubuntu 25.04.
-
Fedora 42 Available with Two New Spins
The latest release from the Fedora Project includes the usual updates, a new kernel, an official KDE Plasma spin, and a new System76 spin.
-
So Long, ArcoLinux
The ArcoLinux distribution is the latest Linux distribution to shut down.
-
What Open Source Pros Look for in a Job Role
Learn what professionals in technical and non-technical roles say is most important when seeking a new position.
-
Asahi Linux Runs into Issues with M4 Support
Due to Apple Silicon changes, the Asahi Linux project is at odds with adding support for the M4 chips.
-
Plasma 6.3.4 Now Available
Although not a major release, Plasma 6.3.4 does fix some bugs and offer a subtle change for the Plasma sidebar.
-
Linux Kernel 6.15 First Release Candidate Now Available
Linux Torvalds has announced that the release candidate for the final release of the Linux 6.15 series is now available.
-
Akamai Will Host kernel.org
The organization dedicated to cloud-based solutions has agreed to host kernel.org to deliver long-term stability for the development team.