diff options
author | John Ankarström <john@ankarstrom.se> | 2020-11-23 23:11:33 +0100 |
---|---|---|
committer | John Ankarström <john@ankarstrom.se> | 2020-11-23 23:23:29 +0100 |
commit | 292678dc5037817c67e2c953012b4a84cf297475 (patch) | |
tree | ec12b4b12bf8a8e1748e66d7f9337f5e0971172b /lf/lfp | |
download | msc-292678dc5037817c67e2c953012b4a84cf297475.tar.gz |
Add dz (Deezer) and lf (Last.fm) tools
Diffstat (limited to 'lf/lfp')
-rwxr-xr-x | lf/lfp | 10 |
1 files changed, 10 insertions, 0 deletions
@@ -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 |