If the -c option is present, then commands are read from string. If there are arguments after the string, they are assigned to the positional parameters, starting with $0.
즉, -c string 에서 string 은 실행 시킬 파일이 아니라 실해 코드가 됩니다.
[user@host ~]$ bash-c"echo aaa"
aaa
string 다음에 argument 가 더 있으면, string 다음 부터 $0, $1 ... 이렇게 사용할 수 있습니다.
옵션에 대한 궁금증은.. man page 를 참조해
옵션에 대한 궁금증은.. man page 를 참조해 보세요.
즉, -c string 에서 string 은 실행 시킬 파일이 아니라 실해 코드가 됩니다.
string 다음에 argument 가 더 있으면, string 다음 부터 $0, $1 ... 이렇게 사용할 수 있습니다.
감사합니다^^
감사합니다^^
댓글 달기