From abee64c4518610572cfd9b7d83897968b52fb96c Mon Sep 17 00:00:00 2001 From: "W. Trevor King" Date: Thu, 19 Mar 2015 08:42:02 -0700 Subject: [PATCH] .bashrc.d/20nobeep: Change '-blength' -> '--blength' setterm from util-linux 2.25.2 uses GNU-style, double-dash long options. I'm not exactly sure when the change took place, but util-linux 2.24.1 used single-dash long options. 2.25.2 also supports the single-dash versions, but I don't need to be backward compatible ;). --- src/.bashrc.d/20nobeep | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/.bashrc.d/20nobeep b/src/.bashrc.d/20nobeep index a887db6..b2a1d3e 100644 --- a/src/.bashrc.d/20nobeep +++ b/src/.bashrc.d/20nobeep @@ -7,5 +7,5 @@ fi # turn of terminal beeps in the console, unless connecting via SSH if [ -n "$TERM" ] && [ -z "$SSH_CLIENT" ]; then - setterm -blength 0 + setterm --blength 0 fi -- 2.26.2