Quantcast
Channel: Vincent's Memo » shell
Viewing all articles
Browse latest Browse all 10

how to use array in shell ?

$
0
0

怎麼在 shell 裡面用 array ?
最簡單的用法如下:

#!/bin/bash
array=("a" "b" "c") # shell array 必須用 space 分隔
echo ${array[0]}
echo ${array[1]}
echo ${array[2]}
echo ${#array[@]}
echo ${array[@]}
# 以下就是輸出
a
b
c
3
a b c

我發現 shell array 真的很好用,尤其在做一些 scripts 自動抓東西時更是好用 :D

參考網址:
http://www.tech-recipes.com/rx/635/bash-shell-script-declaringcreating-arrays/


Viewing all articles
Browse latest Browse all 10

Trending Articles