iamabear09 / __STUDY__shell-script

shell script study
0 stars 0 forks source link

shell script & Linux 명령어 정리 #2

Open iamabear09 opened 5 months ago

iamabear09 commented 5 months ago

shell scirpt 문법 - 찾은 것들을 간단하게 정리해나가면 될 것 같다. Linux 명령어 - 기본적인 것들, 유용하게 사용하는 문법 구조들을 적어두자

iamabear09 commented 5 months ago

Linux 파일 생성 방법

image image

iamabear09 commented 5 months ago

Shell Script 변수 사용 문법

var="Hello world"

echo $var
echo "$var"
echo "${var}"
echo ${var}

출력 결과는 모두 동일하다.

Shell Script ${ } & $( ) 차이

${ } :: 변수를 사용하는 것이다. $( ) :: 명령을 실행하는 것이다.

iamabear09 commented 5 months ago

Linux 파일 내용 출력

image image image