Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 |
Tags
- maVen
- resource
- import
- Eclipse
- Source
- Windows
- JavaScript
- find
- Windows 10
- Mac
- grep
- web.xml
- bash
- context
- IntelliJ
- 줄바꿈 문자
- lsof
- VirtualBox
- 네트워크
- Quartz
- port
- 단축키
- plugin
- tomcat
- profile
- ssh
- vscode
- GIT
- xargs
- netsh
Archives
- Today
- Total
develog
[mac][bash] array 를 file parameter 로 전달 본문
file1.sh
list=(aa bb cc)
./file2.sh ${list[@]}
file2.sh
for item in $@;
do
echo ${item}
done
console
$ ./file1.sh
aa
bb
cc
Comments