반응형
Shells : 명령 번역기
$ -> Shell이 실행되고 있다는 뜻
대표적 Command 형식
Comman이름 -Option Argument
7. Where Programs are Found
$ls : ls라는 프로그램을 실행
$./test : 현재 디렉토리에 있는 test 실행 파일을 실행
$test : shell이 이 명령을 찾아서 실행
간단한 명령어는 shell이 스스로 처리하기도 함
$ echo $PATH
/bin:/usr/bin:/usr/local/bin -> :의 의미 /bin에 없으면 /usr/bin에서 찾아라...
ls -l -a
ls -la -> 둘 다 동일한 명령어
8. Setting Shell Variables
echo $files -> $files : shell 변수
$PATH="$PATH:." ->PATH의 내용의 뒤에 .을 붙여라
30쪽 12번 안중요^^
15. Repeating Commands with for
$whereis filename : file의 위치 알려준다.
$ -> Shell이 실행되고 있다는 뜻
대표적 Command 형식
Comman이름 -Option Argument
7. Where Programs are Found
$ls : ls라는 프로그램을 실행
$./test : 현재 디렉토리에 있는 test 실행 파일을 실행
$test : shell이 이 명령을 찾아서 실행
간단한 명령어는 shell이 스스로 처리하기도 함
$ echo $PATH
/bin:/usr/bin:/usr/local/bin -> :의 의미 /bin에 없으면 /usr/bin에서 찾아라...
ls -l -a
ls -la -> 둘 다 동일한 명령어
8. Setting Shell Variables
echo $files -> $files : shell 변수
$PATH="$PATH:." ->PATH의 내용의 뒤에 .을 붙여라
30쪽 12번 안중요^^
15. Repeating Commands with for
$whereis filename : file의 위치 알려준다.
반응형
댓글