From 08caa0a0b3da4d1dd33039ac59fb541497661671 Mon Sep 17 00:00:00 2001 From: June McEnroe Date: Wed, 25 Aug 2021 17:34:45 -0400 Subject: Use command -v rather than type Some shells write to standard error from type when the command is not found. command -v is silent. --- bin/up.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'bin') diff --git a/bin/up.sh b/bin/up.sh index 3da132c1..8febee95 100644 --- a/bin/up.sh +++ b/bin/up.sh @@ -39,7 +39,7 @@ uploadHilex() { uploadScreen() { temp - if type screencapture >/dev/null; then + if command -v screencapture >/dev/null; then screencapture -i "$@" "${temp}/capture.png" else scrot -s "$@" "${temp}/capture.png" -- cgit 1.4.1 l='branches'> dontfiles
summary refs log tree commit diff
path: root/doc/zlib/deflateReset.3 (unfollow)
Commit message (Expand)Author
2022-06-02Set TABSIZE=4June McEnroe
2022-06-02Do basic match highlightingJune McEnroe
2022-06-02Clean up parsing a littleJune McEnroe
2022-06-02Don't duplicate path stringJune McEnroe
2022-06-02Use stderr instead of /dev/tty, realloc buffer if lines too longJune McEnroe
2022-06-02Add initial working version of qfJune McEnroe
2022-05-29Set prompt for okshJune McEnroe