summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Ankarström <john@ankarstrom.se>2020-11-24 01:35:10 +0100
committerJohn Ankarström <john@ankarstrom.se>2020-11-24 01:35:53 +0100
commit39caa55d510f35ef8cb9c322b3eb7157d6a2f3ef (patch)
tree513d32348cb85d92146d0a4e3386263af680d2f6
parent5e1ba4f9740d7abdb883ac06d03fa165dbb28f3f (diff)
downloadmsc-39caa55d510f35ef8cb9c322b3eb7157d6a2f3ef.tar.gz
dzq: Don't call column on output
It's better to let the user do it himself, if he wants to. paste gives much more predictable output than column.
-rwxr-xr-xdz/dzq3
1 files changed, 2 insertions, 1 deletions
diff --git a/dz/dzq b/dz/dzq
index 17615fd..cb8579a 100755
--- a/dz/dzq
+++ b/dz/dzq
@@ -1,5 +1,7 @@
#!/bin/sh
+# Search Deezer
+
test -z "$1" && { echo usage: $0 query 1>&2; exit 1; }
q=`printf '%s' "$1" | jq -sRr @uri`
@@ -12,6 +14,5 @@ jq -r '.TRACK.data[] | .SNG_TITLE + "\n" + .ART_NAME + "\n" + .SNG_ID' 2>&- |
paste - - - |
sed 's/ */ /g' |
head -${2:-10} |
-column -ts' ' |
nl -w 2 |
tee -a /tmp/dzq