From 068ebb1065061cfa1e9e2402341b543d64f753b4cc0c36048bd571a22aeb013c Mon Sep 17 00:00:00 2001 From: "Marc S. Weidner" Date: Mon, 11 Aug 2025 19:32:11 +0200 Subject: [PATCH] V8.04.002.2025.08.11 Signed-off-by: Marc S. Weidner --- var/bash.var.sh | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/var/bash.var.sh b/var/bash.var.sh index 70e91db..ed40270 100644 --- a/var/bash.var.sh +++ b/var/bash.var.sh @@ -22,13 +22,12 @@ set -o nounset # Exit script on use of an undefined variable, the same set -o pipefail # Makes pipelines return the exit status of the last command in the pipe that failed. ### For all options see https://www.gnu.org/software/bash/manual/bash.html#The-Shopt-Builtin -shopt -s failglob # If set, patterns that fail to match filenames during filename expansion result in an expansion error. +#shopt -s failglob # If set, patterns that fail to match filenames during filename expansion result in an expansion error. shopt -s inherit_errexit # If set, command substitution inherits the value of the errexit option instead of unsetting it in the # subshell environment. This option is enabled when POSIX mode is enabled. shopt -s lastpipe # If set, and job control is not active, the shell runs the last command of a pipeline not executed in # the background in the current shell environment. -shopt -u expand_aliases # If set, aliases are expanded as described below under Aliases, Aliases. This option is enabled by - # default for interactive shells. +shopt -u expand_aliases # If set, aliases are expanded as described. This option is enabled by default for interactive shells. shopt -u dotglob # If set, Bash includes filenames beginning with a '.' in the results of filename expansion. shopt -u extglob # If set, enable the extended pattern matching features. shopt -u nullglob # If set, filename expansion patterns that match no files expand to nothing and are removed.