blob: 0d4a25d54aa2db65b3b8d50dcc98a6c6dd24deb9 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
#!/bin/bash
#basic newsboat bookmark plugin for evernote using geeknote: https://github.com/pipakin/geeknote
url="$1"
title="$2"
description="$3"
feed_title="$4"
content="${url}"$'\n'"${description}"$'\n'"${feed_title}"
geeknote create --title "${title}" --content "${content}"
|