commit 4890b04c7aee58c9f27179aa6bfaebd1dd9c8150 parent 5a5502e5275f7a3f1eaa95bde26257e732cacaf9 Author: Sebastiano Tronto <sebastiano@tronto.net> Date: Thu, 12 Sep 2024 16:33:11 +0200 Fix Diffstat:
M | src/blog/2022-09-13-sh-1/sh-1.md | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/blog/2022-09-13-sh-1/sh-1.md b/src/blog/2022-09-13-sh-1/sh-1.md @@ -179,7 +179,7 @@ completely silent, you can merge standard output and standard error and redirect them both to `/dev/null` with ``` -$ command >&2 >/dev/null +$ command >/dev/null 2>&1 ``` ### Expansion