summaryrefslogtreecommitdiff
path: root/lfp
diff options
context:
space:
mode:
authorJohn Ankarström <john@ankarstrom.se>2020-11-24 03:08:20 +0100
committerJohn Ankarström <john@ankarstrom.se>2020-11-24 03:09:34 +0100
commitdc4a6f87347440e310b739465ec6e2397c742af0 (patch)
tree8f1fbcb20282f880abe46d2c851454900154e30b /lfp
parent6874c634cbca5761a6a8630f07675852f7efba31 (diff)
downloadmsc-dc4a6f87347440e310b739465ec6e2397c742af0.tar.gz
Move dz/*, lf/* into root directory
They are differentiated by the dz/lf prefix anyway.
Diffstat (limited to 'lfp')
-rwxr-xr-xlfp10
1 files changed, 10 insertions, 0 deletions
diff --git a/lfp b/lfp
new file mode 100755
index 0000000..cd21b04
--- /dev/null
+++ b/lfp
@@ -0,0 +1,10 @@
+#!/bin/sh
+
+# Parse Last.fm URL, print title - artist
+
+while read url
+do
+ printf '%b\n' "$(printf '%s\n' "$url" | sed 's/+/ /g; s/%/\\\\x/g')" |
+ cut -d/ -f5,7 |
+ sed 's,^\(.*\)/\(.*\),\2 - \1,'
+done