我正在编写一个 Git Bash 实用程序,它将项目文件夹从一个位置复制到另一个位置。用户可能希望将项目复制到多个目标,但每次执行脚本只允许一个位置。这是迄今为止的逻辑 -
#!/bin/bash
# declare and initialize variables
source="/z/files/development/xampp/code/htdocs/Project7"
targets[0]="/z/files/development/xampp/code/htdocs/test/$(date +'%Y_%m_%d')"
targets[1]="/c/users/knot22/desktop/temp_dev/$(date +'%Y_%m_%d')"
# display contents of variables to user
echo "source " $source
echo -e "\nchoice \t target location"
for i in "${!targets[@]}"; do
echo -e "$i \t ${targets[$i]}"
done
echo
# prompt user for a target
read -p "Enter target's number for this copy operation: " target
到目前为止,一切都很好。接下来我想写一个if
语句来检查用户输入的值是否target
是targets
. 在 PHP 中它会是array_key_exists($target, $targets)
. Bash 中的等价物是什么?
您可以使用以下方法检查数组元素是否为空/空:
您还必须检查响应是否为整数,因为人们可以使用计算为零的字符串来回复读取提示,从而为您提供数组中的第一个元素。
您可能还需要考虑在此处使用select:
TL; DR 这个答案是错误的,但我解释了原因。
我写:
但这是错误的。
在数字索引数组中,索引被计算为算术表达式。在算术表达式中,“裸”字符串作为shell 变量处理,如果变量为空或未设置,则将其作为值零处理。
演示:
但是如果有一个与 的值同名的变量,那么:
$target