[Shell] shell argument array
2016. 10. 16. 13:16ㆍshellscript
1. shell 을 실행시 배열형태로 데이터를 넘기고 처리하기
- test.sh
#!/bin/bash b="$@" for v in ${b[@]} do echo $v; done
- 실행
test.sh 'a' 'b' 'c'
-결과
a
b
c
'shellscript' 카테고리의 다른 글
[Bash/Shell] 실행 bash 와 source 의 차이 (3) | 2017.01.24 |
---|