우노
[Shell Script] 명령 실행 결과를 변수로 저장하는 방법 본문
역따옴표(``) 사용
역따옴표(``)를 사용하여 명령 실행 결과를 변수로 사용할 수 있다.
#!/bin/bash a=`echo helloworld` echo ${a} # helloworld
'Operating System > Shell Script' 카테고리의 다른 글
[Shell Script] 환경 변수 선언 (export) 및 호출 (os.environ) (0) | 2020.12.19 |
---|---|
[Shell Script] EOF 사용시 에러 (0) | 2020.12.19 |
[Shell Script] Shell Script 에서 csv 파일 읽기 (0) | 2020.12.06 |
[Shell Script] Shell Script 생성 및 실행 방법 (0) | 2020.07.07 |
[Shell Script] 기본 문법 (1) | 2020.07.07 |
Comments