Skip to content

Instantly share code, notes, and snippets.

View avinash's full-sized avatar

Avinash Meetoo avinash

View GitHub Profile
@avinash
avinash / kindle-spit-by-book.php
Created May 23, 2017 05:19
kindle "My Clippings.txt" splitter
#!/usr/bin/php
<?php
if (empty($argv[2])) {
throw new Exception('usage: <this file> "/path/to/My Clippings.txt" /path/to/ouputfiles');
}
$myClippingsFile = $argv[1];
$splitDir = $argv[2];