Alex Aref Asked: 2020-06-17 04:45:51 +0800 CST2020-06-17 04:45:51 +0800 CST 2020-06-17 04:45:51 +0800 CST 如何使脚本要求用户输入以在脚本本身中放入变量? 772 正如问题所暗示的那样,我制作了一个脚本,在 *.ovpn 文件的特定行中插入特定语句,如何将 * 作为输入参数,以便脚本在执行时询问我?(我正在使用 EOF,但我可以切换到任何其他有效的方法)。 提前致谢。 linux scripting bash 2 个回答 Voted Best Answer Marat Gainutdinov 2020-06-17T05:03:39+08:002020-06-17T05:03:39+08:00 我创建了 script.sh 并使用了用户提供的变量 。/脚本 '*' #!/usr/bin/env bash echo "Enter Text For Variable" read my_var echo "Your variable is used as you can see *.$my_var" echo "Positional variable is here $1" fpmurphy 2020-06-17T06:57:24+08:002020-06-17T06:57:24+08:00 使用read -p: #!/bin/bash read -p "Enter filename: " filename echo "Your file is: $filename.ovpn"
我创建了 script.sh 并使用了用户提供的变量
。/脚本 '*'
使用
read -p
: