Created
May 31, 2016 04:49
-
-
Save retrography/6d727c1e018ce7b38d546bed9ff129ba to your computer and use it in GitHub Desktop.
Exports notes from LetterSpace and imports them into SimpleNote using SimpleNote CLI (sncli)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env ruby | |
require 'json' | |
Dir.glob(ARGV).each do |fname| | |
note = {} | |
note['createdate']=File.ctime(fname).to_f | |
note['modifydate']=File.mtime(fname).to_f | |
f=File.read(fname) | |
note['content']=f.gsub(/(#|@)([0-9a-zA-Z_\-]+)/,'\2') | |
note['tags']=f.scan(/(#|@)([0-9a-zA-Z_\-]+)/).map{|t| t.last.downcase} | |
note['systemtags']=['markdown'] | |
title=fname.gsub(/\.[^.]+$/,'') | |
File.write(title+".json", note.to_json) | |
puts title | |
%x( cat "#{title+".json"}" | sncli import - ) | |
sleep 15 | |
end | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment