From 39caa55d510f35ef8cb9c322b3eb7157d6a2f3ef Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?John=20Ankarstr=C3=B6m?= Date: Tue, 24 Nov 2020 01:35:10 +0100 Subject: 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. --- dz/dzq | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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 -- cgit v1.2.3