shell 数组 循环

前端之家收集整理的这篇文章主要介绍了shell 数组 循环前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
#!/bin/bash
array=(1 2 3 4 5) #以括号括起为数组 中间是空格
for num in "${array[@]}"  #以这种for打印数组
do
	echo $num
done

xxx[0]='a' #第二种定义数组的方法
xxx[1]='b'
xxx[2]='c'
for ((i=0; i<${#xxx[@]};i++)); do # ${#xxx[@]} 返回数组的大小
	echo ${xxx[i]}  #${xxx[$i]} ${xxx[${i}]} 这两种都可以 通过下标打印数组 数组从0开始
done

#对目录处理的一些技巧
xxx=(`ls`) # ``这里可以包含一些shell命令(~这个键) 这个配合管道命令是很强大的 grep sed
for file in "${xxx[@]}" #用第二种for循环也是可以的
do
	echo $file 
done 

#sh相加字符串是非常方便的 直接放到后面就可以了 
#单引号和双引号是有区别的 单引号只能放字符串 双引号里面可以解释变量
initPath='/a'
secPath='/b'
thrPath='c'
path=${initPath}'/'
path=${initPath}${secPath}'/'${thrPath}

#对数字的支持可能就比较烦了
xxx=2
xx=${xxx}-1
echo $xx  #输出:2-1
echo $(($xxx-1)) #如果是数字运算 外面加上 $(( )) 才会得到正确的结果
let "x=xxx+(xx*2)" #let 相当于(()) 这个比较好用
echo $x
x=$((xxx+(xx*2))) #2种方式相同 如果是数字处理可以不带$  字符串必须要带$ 或 ${}
echo $x

#declare 可以定义变量的属性
declare -i i=1 #定义一个int的变量
declare -i sum=0
while ((i<10)); do #while循环
	let sum+=i
	let ++i
done
echo $sum

while read line; do
	echo $line
	break    #shell是支持 break 和 countinue的
done

#if 语句 判断数字的写法 [ ] 两边都要有空格 -ne 不相等的意思 
这里比较的是数字 所以 $(($filesNum-1))这个就要这样写 $((${filesNum}-1)) 都可以
if [ "$j" -ne "$(($i-1))" ]||[ "$j" -ne "$(($filesNum-1))" ]; then

else

fi
#比较字符串 是否相等
if [ "${initPath}" != "${buildPath}" ]; then

elif [ command ]; then

fi
#判断目录是否存在
if [ ! -d "${buildPath}" ]; then
		mkdir $buildPath
fi
原文链接:https://www.f2er.com/bash/392910.html

猜你在找的Bash相关文章