linux – 如何在shell脚本中操作数组

前端之家收集整理的这篇文章主要介绍了linux – 如何在shell脚本中操作数组前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我希望我的脚本定义一个空数组.如果预定义条件为真,则应添加数组值.为此,我所做的就是

declare -a FILES
file_count=0
if [ "$file_ext" != "$SUPPORTED_FILE_TYPE" ] ; then
        echo "$file_ext is not supported for this task."
else
        $FILES[$file_count] = $filename
        file_count=$file_count+1
fi

执行此脚本时,我收到这样的错误

linux-softwares/launchers/join_files.sh: 51: [0]: not found
最佳答案
当数组中的设置数据无法使用$调用时:

declare -a FILES
file_count=0
if [ "$file_ext" != "$SUPPORTED_FILE_TYPE" ] ; then
        echo "$file_ext is not supported for this task."
else
        FILES[$file_count]=$filename
        file_count=$file_count+1
fi

没有$的文件.

这对我有用:

#!/bin/bash
declare -a FILES
file_count=0

file_ext='jpg'
SUPPORTED_FILE_TYPE='jpg'
filename='test.jpg'

if [ "$file_ext" != "$SUPPORTED_FILE_TYPE" ] ; then
        echo "$file_ext is not supported for this task."
else
        FILES[$file_count]=$filename
        file_count=$(($file_count+1))
fi

如你所见,对数学运算稍加修改$(()),但FILES分配是相同的……

正如经过大量测试所指出的那样,Ubuntu默认的shell似乎是破折号,这就引发了错误.

原文链接:https://www.f2er.com/linux/441222.html

猜你在找的Linux相关文章