From 3d3dc3c96ae1235de83cc77cf76db03c73d4279f Mon Sep 17 00:00:00 2001 From: xdavidwu Date: Sat, 5 Jun 2021 13:05:31 +0800 Subject: [PATCH] bash: imgcat: fix quote --- .bashrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.bashrc b/.bashrc index 72302a9..b7be609 100644 --- a/.bashrc +++ b/.bashrc @@ -130,7 +130,7 @@ imgcat() { EXTRA= MAX=$(imgcat_max_pixels 2>/dev/null) [ -n "$MAX" ] && EXTRA="-resize ${MAX}>" - convert $@ $EXTRA sixel:- + convert "$@" $EXTRA sixel:- } # application envs -- 2.45.2