From 28c98d48df0d59fe707d23f54e9fcb6ccb1eb63e Mon Sep 17 00:00:00 2001 From: Lazarus Lazaridis Date: Wed, 14 Mar 2018 17:53:11 +0200 Subject: [PATCH] Fix shellcheck SC2005 --- goto.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/goto.sh b/goto.sh index 1f3d7fe..e11edad 100644 --- a/goto.sh +++ b/goto.sh @@ -295,7 +295,7 @@ _goto_print_similar() similar=$(sed -n "/^$1[^ ]* .*/p" "$GOTO_DB" 2>/dev/null) if [ -n "$similar" ]; then (>&2 echo "Did you mean:") - (>&2 echo "$(echo "$similar" | column -t)") + (>&2 column -t <<< "$similar") fi }