From 389f23521d2d43fd7a9117a47f5ba4ed92c4c389 Mon Sep 17 00:00:00 2001 From: Raymaekers Luca Date: Mon, 16 Oct 2023 12:08:15 +0200 Subject: fixed typo --- bin/common/ytclipo | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'bin/common') diff --git a/bin/common/ytclipo b/bin/common/ytclipo index 567e357..712b068 100755 --- a/bin/common/ytclipo +++ b/bin/common/ytclipo @@ -8,7 +8,7 @@ then paste() { termux-clipboard-get; } else paste() { xclip -o -sel c; } fi -inp=”$1” +inp="$1" [ "${inp:=$(paste)}" ] || inp="$(cat /dev/stdin)" # take last link from clipboard -- cgit v1.2.3 From c4da89e164a9901f4a317085d83f745e235b6ea0 Mon Sep 17 00:00:00 2001 From: Raymaekers Luca Date: Tue, 17 Oct 2023 22:12:26 +0200 Subject: use eval to allow pipes --- bin/common/wt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'bin/common') diff --git a/bin/common/wt b/bin/common/wt index d19539b..3cd739a 100755 --- a/bin/common/wt +++ b/bin/common/wt @@ -2,6 +2,6 @@ while true do clear - $@ + eval "$*" sleep 1 done -- cgit v1.2.3