Linux Terminal 명령어

백은진·2020년 10월 4일
0

TIL (Today I Learned)

목록 보기
83/106

Basic Shell Commands

  1. cd

=== change directory
=== 폴더 이동

  1. ls

=== list segments
=== 현재 경로 내 파일 몰록 출력
== ls -al

  1. pwd

=== print working directory
=== 현재 경로 출력

  1. mkdir / rmdir

=== make directory
=== 파일 / 디렉토리 제거
== rm -r (remove directories and their contents recursively)
== rm -r -f 혹은 rm -rf (remove directories and their contents recursively, and ignore nonexistent files and arguments, never prompt) *조심해서 사용하기! 자신을 포함해 최상위 디렉토리 밑에 있는 모든 파일과 디렉토리를 삭제하는 포맷 명령어다.

  1. cp

=== copy
=== 파일 / 디렉토리 복사

  1. mv

=== move
=== 파일 / 디렉토리 이동

  1. cat

=== concatenate
=== 터미널에 파일 내용 출력 (use when you have more than one file, and you want to combine (or concatenate) them into one text file in order.)

  1. touch

=== 파일 생성 및 날짜 정보 변경
== touch readme.md

  1. chmod

=== change mode
=== 파일 / 디렉토리 권한 설정
== chmod u+x readme.md

  1. less, tail, nohup, clear, chown, chmod, grep, history, ps, etc.

Shell using Tips

  1. ctrl + a
    => 해당 줄의 맨 앞으로 이동

  2. ctrl + e
    => 해당 줄의 맨 뒤로 이동

  3. Command + k
    => terminal screen reset

Piping

|

=> 2개의 명령어를 연쇄적으로 이어 일을 처리한다.
=> 예를 들어, command1 | command2 명령어일 경우, command1의 결과값을 command2의 input으로 넘겨준다.

profile
💡 Software Engineer - F.E

0개의 댓글