분류 전체보기
-
shell 간단정리카테고리 없음 2023. 4. 18. 12:30
shell-script 변수 변수 선언 타입 추론을 한다. val=10 echo $val #10 str="hello world" echo $str #hello world arr=("value1 value2 value3") echo $arr #value1 value2 value3 스크립트 인자 전달 ./example01.sh Hello world echo "this file : $0" #this file : ./example01.sh echo "argument size : $#" #argument size : 2 echo "Process ID : $$" #Process ID : 10062 echo "arguments : $*" #arguments : Hello world echo "argument 1 : ..