shell数组实例

利用数组形式存放10个的名字,然后利用for循环它们打印出来
 
#!/bin/bash

name=(a b c d e f g h j i)
for i in ${name[*]}
do
echo $i
done

你可能感兴趣的:(职场,休闲)