blob: 61a9026c9f6118d6c450d04339e045c0cbe35ffb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#!/bin/sh
# Search Deezer
test -z "$1" && { echo usage: $0 query 1>&2; exit 1; }
q=`printf '%s' "$1" | jq -sRr @uri`
rm /tmp/dzq 2> /dev/null
curl -s "https://www.deezer.com/search/$q" |
grep __DZR_APP_STATE__ |
cut -d= -f2- |
jq -r '.TRACK.data[] | .SNG_TITLE + "\t" + .ART_NAME + "\t" + .ALB_TITLE + "\t" + .SNG_ID' 2>&- |
sed 's/ */ /g' |
nl -w 2 |
tee -a /tmp/dzq
|