Skip to content

Instantly share code, notes, and snippets.

@azu
Created April 16, 2021 01:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save azu/8f60bafef5e26e63e89e1ecee8e7f940 to your computer and use it in GitHub Desktop.
Save azu/8f60bafef5e26e63e89e1ecee8e7f940 to your computer and use it in GitHub Desktop.
kindle copy app from url
#!/usr/bin/env node
/**
* https://gist.github.com/georgebrock/9ab3d83bf160b7c1c2b0
* 1. Script Editor
* 2. Shell Script
* 3. Node.js
*/
const url = new URL(process.argv[2]);
const text = url.searchParams.get("q");
const clipboardy = require('clipboardy');
clipboardy.writeSync(text);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment