[shell script] $0 : 스크립트 파일 이름

HYEOB KIM·2022년 4월 21일
0

Shell

목록 보기
37/71

$0은 스크립트 파일 이름을 의미

매개변수가 $1부터 시작하는 이유는 $0스크립트 파일 이름을 가리키기 때문입니다.

$ cat test1
#!/bin/bash
echo "script file name : $0"

$ ./test1
script file name : ./test1
profile
Devops Engineer

0개의 댓글