I made a command in python to send standard input to evernote. On New Year. I left it as it was, but it was empty that no one would use it even though I made it, so I improved it and released it.
https://github.com/ngc224/everstdin
Can be used like this
$ echo 'Note Content' | everstdin
$ tail -f /var/log/access_log | everstdin -t 'apache access log'
$ cat /etc/nginx/nginx.conf | everstdin --tags nginx,config --notebook linux
$ everstdin -t 'localhost hosts file' < /etc/hosts
I was stuck trying to deal with things like tail -f that can't be terminated without sending a signal, When I thought about it, I just wrote it finally. .. I was impressed by the convenience of argparse I'm glad that the developer page of evernote api was easy to understand
Recommended Posts