如何将标志从一个脚本传递到另一个脚本中的函数

如何将标志从一个脚本传递到另一个脚本中的函数

我有一个安装了一堆程序(自制程序、git 等)的脚本,并且我让它记录了stdout它一路上所做的所有事情,但我希望能够传递一个标志,例如--no-log关闭日志记录。日志记录函数源自一个包含大量帮助程序脚本的文件,并且我无法将标志传递给这些其他文件。

[编辑]

给定(./bin/install.sh)

#!/usr/bin/env bash

# Test for known flags
for opt in $@
do
    case $opt in
        --no-log) export SILENT=true ;;
        -*|--*) 
            e_warning "Invalid option $opt" 
            run_help
            ;;
    esac
done

source ./lib/utils

e_process "Installing Homebrew"
ruby -e "$(curl -#fkL raw.github.com/Homebrew/homebrew/go/install)"

(./lib/utils.sh)

#!/usr/bin/env bash

logging() {
    # write your test however you want; this just tests if SILENT is non-empty
    if [ -n "$SILENT" ]; then
        "$@" &> /dev/null
    else
        "$@"
    fi
}

# Command/Processing logging
e_process() {
    logging printf "$(tput setaf 6)┃ $(tput sgr0)$(tput setaf 7)%s...$(tput sgr0)\n" "$@"
}

然后

如果我运行,./bin/dotfiles我希望看到日志记录┃ Installing Homebrew...,但如果我运行,./bin/dotfiles --no-log我希望看不到日志记录,但它不起作用。

输出(使用bash -x

$ bash -x ./bin/install.sh
+ source ./lib/utils.sh
+ e_process 'Installing Homebrew'
++ tput setaf 6
++ tput sgr0
++ tput setaf 7
++ tput sgr0
+ logging printf '┃ %s...\n' 'Installing Homebrew'
+ '[' -n '' ']'
+ printf '┃ %s...\n' 'Installing Homebrew'
┃ Installing Homebrew...

使用--no-log

bash -x ./bin/install.sh --no-log
+ for opt in '$@'
+ case $opt in
+ export SILENT=true
+ SILENT=true
+ source ./lib/utils.sh
+ e_process 'Installing Homebrew'
++ tput setaf 6
++ tput sgr0
++ tput setaf 7
++ tput sgr0
+ logging printf '┃ %s...\n' 'Installing Homebrew'
+ '[' -n true ']'
+ printf '┃ %s...\n' 'Installing Homebrew'

答案1

您获取 utils 脚本您设置了环境变量的值,因此全局变量$silent_mode为空。

不要在 utils 脚本中使用“temp”变量,坚持$SILENT在这些函数中使用。

相关内容