summaryrefslogtreecommitdiff
path: root/pc
diff options
context:
space:
mode:
authorJohn Ankarström <john@ankarstrom.se>2020-11-29 17:27:00 +0100
committerJohn Ankarström <john@ankarstrom.se>2020-11-29 17:27:00 +0100
commit46bf011613eda177e7ce666646417711c167de33 (patch)
tree358100f00f8541393299ce1de2f04bd0feb8fe6a /pc
downloadpc-46bf011613eda177e7ce666646417711c167de33.tar.gz
Add 'pc', 'pd', 'pi' and 'pl' tools
Diffstat (limited to 'pc')
-rwxr-xr-xpc14
1 files changed, 14 insertions, 0 deletions
diff --git a/pc b/pc
new file mode 100755
index 0000000..a891740
--- /dev/null
+++ b/pc
@@ -0,0 +1,14 @@
+#!/bin/sh
+
+curl -Ls "$@" |
+sed -n '/<item>/,$p' |
+sed -e '/^$/d' -e 's/^[ ]*//' |
+awk -vFS='[<>]' '
+ /<pubDate>/ { print "Date: " $3; }
+ /<title>/ { print "Subject: " $3; }
+ /<itunes:summary>/ { print "Summary: " $3; }
+ /<enclosure[^>]*>/ { print "Link: " $0; }
+ /<itunes:duration>/ { print "Duration: " $3; }
+ /<\/item>/ { print ""; }
+' |
+sed 's,<enclosure[^>]* url="\([^"]*\)".*,\1,'