diff options
author | John Ankarström <john@ankarstrom.se> | 2020-11-24 01:35:10 +0100 |
---|---|---|
committer | John Ankarström <john@ankarstrom.se> | 2020-11-24 01:35:53 +0100 |
commit | 39caa55d510f35ef8cb9c322b3eb7157d6a2f3ef (patch) | |
tree | 513d32348cb85d92146d0a4e3386263af680d2f6 | |
parent | 5e1ba4f9740d7abdb883ac06d03fa165dbb28f3f (diff) | |
download | msc-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-x | dz/dzq | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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 |