From e0cf4425b3ad564e6cb499ba2b20227abf769f84 Mon Sep 17 00:00:00 2001 From: Nicolas Boisselier Date: Fri, 8 Mar 2024 23:32:13 +0100 Subject: [PATCH] cat_stty --- etc/profile.d/functions | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/etc/profile.d/functions b/etc/profile.d/functions index 54b0955c..fd55c1b7 100755 --- a/etc/profile.d/functions +++ b/etc/profile.d/functions @@ -9,7 +9,7 @@ cat_stty() { usage="cat_stty DEVICE [BAUD=9600]" local dev="${1?$usage}" local baud="${2:-9600}" - echo cat "$dev" "$baud" + cat "$dev" "$baud" } which nproc > /dev/null || nproc() { -- 2.47.3