Answers:
您可以像这样使用它:
## declare an array variable
declare -a arr=("element1" "element2" "element3")
## now loop through the above array
for i in "${arr[@]}"
do
echo "$i"
# or do whatever with individual element of the array
done
# You can access them using echo "${arr[0]}", "${arr[1]}" also
也适用于多行数组声明
declare -a arr=("element1"
"element2" "element3"
"element4"
)
当然可以。
for databaseName in a b c d e f; do
# do something like: echo $databaseName
done
for year in $(seq 2000 2013)
。
DATABASES="a b c d e f"
。
这些答案都没有包含计数器...
#!/bin/bash
## declare an array variable
declare -a array=("one" "two" "three")
# get length of an array
arraylength=${#array[@]}
# use for loop to read all values and indexes
for (( i=1; i<${arraylength}+1; i++ ));
do
echo $i " / " ${arraylength} " : " ${array[$i-1]}
done
输出:
1 / 3 : one
2 / 3 : two
3 / 3 : three
echo "$i / ${arraylength} : ${array[$i-1]}"
-否则,如果您$i
包含一个glob,它将被扩展,如果它包含一个制表符,它将被更改为一个空间等
是
for Item in Item1 Item2 Item3 Item4 ;
do
echo $Item
done
输出:
Item1
Item2
Item3
Item4
保留空间;单引号或双引号列表条目以及双引号列表扩展。
for Item in 'Item 1' 'Item 2' 'Item 3' 'Item 4' ;
do
echo "$Item"
done
输出:
Item 1
Item 2
Item 3
Item 4
列出多行
for Item in Item1 \
Item2 \
Item3 \
Item4
do
echo $Item
done
输出:
Item1
Item2
Item3
Item4
简单列表变量
List=( Item1 Item2 Item3 )
要么
List=(
Item1
Item2
Item3
)
显示列表变量:
echo ${List[*]}
输出:
Item1 Item2 Item3
遍历列表:
for Item in ${List[*]}
do
echo $Item
done
输出:
Item1
Item2
Item3
创建一个要遍历列表的函数:
Loop(){
for item in ${*} ;
do
echo ${item}
done
}
Loop ${List[*]}
使用clarify关键字(命令)创建列表,该列表在技术上称为数组:
declare -a List=(
"element 1"
"element 2"
"element 3"
)
for entry in "${List[@]}"
do
echo "$entry"
done
输出:
element 1
element 2
element 3
创建一个关联数组。一本字典:
declare -A continent
continent[Vietnam]=Asia
continent[France]=Europe
continent[Argentina]=America
for item in "${!continent[@]}";
do
printf "$item is in ${continent[$item]} \n"
done
输出:
Argentina is in America
Vietnam is in Asia
France is in Europe
将CVS变量或文件放入列表中。
将内部字段分隔符从空间更改为所需的内容。
在下面的示例中,将其更改为逗号
List="Item 1,Item 2,Item 3"
Backup_of_internal_field_separator=$IFS
IFS=,
for item in $List;
do
echo $item
done
IFS=$Backup_of_internal_field_separator
输出:
Item 1
Item 2
Item 3
如果需要编号:
`
这称为反向刻度。将命令放回去号内。
`commend`
它在键盘上的数字1旁边或在Tab键上方。在标准的美式英语键盘上。
List=()
Start_count=0
Step_count=0.1
Stop_count=1
for Item in `seq $Start_count $Step_count $Stop_count`
do
List+=(Item_$Item)
done
for Item in ${List[*]}
do
echo $Item
done
输出为:
Item_0.0
Item_0.1
Item_0.2
Item_0.3
Item_0.4
Item_0.5
Item_0.6
Item_0.7
Item_0.8
Item_0.9
Item_1.0
变得更加熟悉休克行为:
在文件中创建列表
cat <<EOF> List_entries.txt
Item1
Item 2
'Item 3'
"Item 4"
Item 7 : *
"Item 6 : * "
"Item 6 : *"
Item 8 : $PWD
'Item 8 : $PWD'
"Item 9 : $PWD"
EOF
将列表文件读入列表并显示
List=$(cat List_entries.txt)
echo $List
echo '$List'
echo "$List"
echo ${List[*]}
echo '${List[*]}'
echo "${List[*]}"
echo ${List[@]}
echo '${List[@]}'
echo "${List[@]}"
"${List[@]}"
正确,用引号引起来。${List[@]}
是错的。${List[*]}
是错的。尝试List=( "* first item *" "* second item *" )
-您将获得的正确行为for item in "${List[@]}"; do echo "$item"; done
,但不会从其他任何变体中获得。
List=( "first item" "second item" )
将被分解成first
,item
,second
,item
以及)。
本着与4ndrew的回答相同的精神:
listOfNames="RA
RB
R C
RD"
# To allow for other whitespace in the string:
# 1. add double quotes around the list variable, or
# 2. see the IFS note (under 'Side Notes')
for databaseName in "$listOfNames" # <-- Note: Added "" quotes.
do
echo "$databaseName" # (i.e. do action / processing of $databaseName here...)
done
# Outputs
# RA
# RB
# R C
# RD
B.名称中不能有空格:
listOfNames="RA
RB
R C
RD"
for databaseName in $listOfNames # Note: No quotes
do
echo "$databaseName" # (i.e. do action / processing of $databaseName here...)
done
# Outputs
# RA
# RB
# R
# C
# RD
笔记
listOfNames="RA RB R C RD"
具有相同的输出。引入数据的其他方式包括:
从stdin读取
# line delimited (each databaseName is stored on a line)
while read databaseName
do
echo "$databaseName" # i.e. do action / processing of $databaseName here...
done # <<< or_another_input_method_here
IFS='\n'
,对于MacOSIFS='\r'
)#!/bin/bash
脚本文件的顶部包括指示执行环境。其他来源(读取循环时)
IFS
。(对于每个人,IFS
让我们指定一个特定的定界符,该定界符允许将其他空格包含在字符串中,而不必分成子字符串)。
$databaseName
仅包含整个列表,因此仅执行一次迭代。
令人惊讶的是,还没有人发布此内容-如果在遍历数组时需要元素的索引,则可以执行以下操作:
arr=(foo bar baz)
for i in ${!arr[@]}
do
echo $i "${arr[i]}"
done
输出:
0 foo
1 bar
2 baz
我发现这比“传统” for循环样式(for (( i=0; i<${#arr[@]}; i++ ))
)优雅得多。
(${!arr[@]}
并且$i
不需要被引用,因为它们只是数字;有些人建议无论如何都要引用它们,但这只是个人喜好。)
这也很容易理解:
FilePath=(
"/tmp/path1/" #FilePath[0]
"/tmp/path2/" #FilePath[1]
)
#Loop
for Path in "${FilePath[@]}"
do
echo "$Path"
done
IFS=$'\n'
在这种情况下,这也可能适用于其他解决方案。
除了anubhava的正确答案之外:如果loop的基本语法是:
for var in "${arr[@]}" ;do ...$var... ;done
有一个特别的情况重击:
当运行脚本或函数,参数在命令行通过将被分配给$@
数组变量,就可以访问通过$1
,$2
,$3
,等等。
可以通过以下方式填充(用于测试)
set -- arg1 arg2 arg3 ...
一个循环在这个阵列可以简单地写成:
for item ;do
echo "This is item: $item."
done
请注意,in
不存在保留的工作,也没有数组名称!
样品:
set -- arg1 arg2 arg3 ...
for item ;do
echo "This is item: $item."
done
This is item: arg1.
This is item: arg2.
This is item: arg3.
This is item: ....
请注意,这与
for item in "$@";do
echo "This is item: $item."
done
#!/bin/bash
for item ;do
printf "Doing something with '%s'.\n" "$item"
done
将其保存在脚本myscript.sh
中chmod +x myscript.sh
,然后
./myscript.sh arg1 arg2 arg3 ...
Doing something with 'arg1'.
Doing something with 'arg2'.
Doing something with 'arg3'.
Doing something with '...'.
myfunc() { for item;do cat <<<"Working about '$item'."; done ; }
然后
myfunc item1 tiem2 time3
Working about 'item1'.
Working about 'tiem2'.
Working about 'time3'.
该声明数组不适用于Korn shell。将以下示例用于Korn shell:
promote_sla_chk_lst="cdi xlob"
set -A promote_arry $promote_sla_chk_lst
for i in ${promote_arry[*]};
do
echo $i
done
for i in ${foo[*]}
基本上总是错误的事情- for i in "${foo[@]}"
是保留原始列表边界并防止全局扩展的形式。回声必须是echo "$i"
如果使用的是Korn Shell,则存在“ set -A databaseName ”,否则存在“ declaration -a databaseName ”
要编写适用于所有shell的脚本,
set -A databaseName=("db1" "db2" ....) ||
declare -a databaseName=("db1" "db2" ....)
# now loop
for dbname in "${arr[@]}"
do
echo "$dbname" # or whatever
done
它应该适用于所有外壳。
$ bash --version
GNU bash,版本4.3.33(0)-发行版(amd64-portbld-freebsd10.0)$ set -A databaseName=("db1" "db2" ....) || declare -a databaseName=("db1" "db2" ....)
bash:意外标记'('
单线循环
declare -a listOfNames=('db_a' 'db_b' 'db_c')
for databaseName in ${listOfNames[@]}; do echo $databaseName; done;
您将得到这样的输出,
db_a
db_b
db_c