From e21bfdd7a8d76ab3f027a999fea090639482f2f6 Mon Sep 17 00:00:00 2001 From: K9T33NwthTookThis <127902233+K9T33NwthTookThis@users.noreply.github.com> Date: Tue, 15 Jul 2025 22:09:06 +0100 Subject: [PATCH] Update info-dumper.sh --- info-dumper.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/info-dumper.sh b/info-dumper.sh index ebeb95c..f41b6fb 100755 --- a/info-dumper.sh +++ b/info-dumper.sh @@ -41,7 +41,7 @@ getent passwd | while IFS=: read -r name _ uid _ _ _ _; do awk -v user="$name" '{gsub(user, "[REDACTED]"); print}' /tmp/rpc-dump.txt | tee /tmp/rpc-dump-stripped.txt &>/dev/null done -read -r -p "Print output? [y, N]: " -t 8 output +read -p "Print output? [y, N]: " -t 8 output if [[ $output == y ]]; then cat /tmp/rpc-dump-stripped.txt fi