2

我正在尝试设置一个脚本完成运行后将持续存在的环境变量。在我结束 ssh 会话后它会消失。

示例 bash 脚本:

# User picks an option
1) export dogs = cool
2) export dogs = not_cool

运行脚本source script.sh不起作用,因为它在运行时将我踢出我的外壳,并且还需要交互式菜单,因此它不起作用。基本上我希望用户能够选择一个选项来在他们的 shell 中的环境变量之间切换。这甚至可能吗?

资源:

#!/bin/bash
set -x
show_menu(){
    NORMAL=`echo "\033[m"`
    MENU=`echo "\033[36m"` #Blue
    NUMBER=`echo "\033[33m"` #yellow
    FGRED=`echo "\033[41m"`
    RED_TEXT=`echo "\033[31m"`
    ENTER_LINE=`echo "\033[33m"`
    echo -e "${MENU}*********************************************${NORMAL}"
    echo -e "${MENU}**${NUMBER} 1)${MENU} Option 1 ${NORMAL}"
    echo -e "${MENU}**${NUMBER} 2)${MENU} Option 2 ${NORMAL}"
    echo -e "${MENU}*********************************************${NORMAL}"
    echo -e "${ENTER_LINE}Please enter a menu option and enter or ${RED_TEXT}enter to exit. ${NORMAL}"
    read opt
}
function option_picked() {
COLOR='\033[01;31m' # bold red
RESET='\033[00;00m' # normal white
MESSAGE=${@:-"${RESET}Error: No message passed"}
echo -e "${COLOR}${MESSAGE}${RESET}"
}
clear
show_menu
while [ opt != '' ]
do
    if [[ $opt = "" ]]; then
        exit;
    else
        case $opt in
            1) clear;
                option_picked "Option 1";
                export dogs=cool
                show_menu;
                ;;
            2) clear;
                option_picked "Option 2";
                export dogs=not_cool
                show_menu;
                ;;
            x)exit;
                ;;
            \n)exit;
                ;;
            *)clear;
                option_picked "Pick an option from the menu";
                show_menu;
                ;;
        esac
    fi
done
4

3 回答 3

1

将用户交互的正常回声重定向到 stderr (>&2)

将您希望在父母环境中拥有的值回显到标准输出 (>&1)

如果您以这种方式更改脚本,则可以这样称呼它:

ENV_VAR=$( /path/to/your_script arg1 arg2 arg3 arg_whatever )

现在您已将变量“导出”到“父级”

于 2013-11-06T18:45:30.187 回答
1

这里的问题是. ./script.sh或者source ./script.sh不能运行像这样的交互式菜单样式脚本。我不知道从 bash 脚本中设置本地环境变量,就像我在这里尝试做的那样。

于 2013-11-05T20:51:05.980 回答
0

尝试使用“./myscript.sh”运行你的脚本,它将使用当前的 shell 而不会调用新的 shell(我仍然怀疑 hash bang 可能会调用新的 shell)。

看看这里

也可以用~/.bashrc 解决。可以在此文件中添加所需的环境。如果您需要在自己的环境中使用新的 shell,请使用“bash --rcfile”调用“bash”。

于 2013-11-05T12:18:48.780 回答