유닉스 쉘: Summary of Basic Commands

Key Points

쉘(Shell) 소개
  • 쉘은 프로그램으로 주된 목적은 명령을 읽고 다른 프로그램을 실행시키는 것이다.

  • 쉘의 주된 장점은 높은 액션대비 키보드 입력비율이다. 예를 들어 반복되는 작업을 자동화하는 것과 네트워크 컴퓨터에 접속하는 능력이 포함된다.”

  • 쉘의 주된 단점은 주로 태생이 텍스트라는 것과 명령어와 동작이 수수께끼 같다는 점이다.

파일과 디렉토리 돌아다니기
  • 파일 시스템은 디스크에 저장된 정보를 관리하는 역할을 담당한다.

  • 정보는 파일에 저장되고, 파일은 디렉토리(폴더)에 저장된다.

  • 디렉토리는 다른 디렉토리도 저장할 수 있는데, 이를 통해 디렉토리 나무구조가 형성된다.

  • cd path 명령어를 통해 현재 작업하는 디렉토리를 바꿀 수 있다.

  • ls path 명령어는 특정 파일 혹은 디렉토리 목록을 출력한다; ls 자체로 현재 작업중인 디렉토리 정보를 보여준다.

  • pwd는 사용자의 현재 작업하는 디렉토리를 출력한다.

  • /은 전체 파일 시스템의 루트 디렉토리가 된다.

  • 상대경로는 현재 위치에서 시작하는 위치를 명세한다.

  • 절대경로는 파일 시스템 루트 위치로부터 위치를 명세한다.

  • 경로명을 유닉스에서는 /, 윈도우에서는 \ 기호로 구분한다.

  • .. 은 현재 디렉토리 상위 디렉토리를 의미한다; .은 ‘현재 디렉토리’를 의미한다.

  • 거의 대부분의 파일명은 파일명.확장자(something.extension) 형태를 띈다. 확장자가 필요하지도 그 어떤 것도 보증하지 않지만, 일반적으로 파일 데이터 유형이 어떤 것인지 지정하는 사용된다.

파일과 디렉토리 작업
  • cp old new 명령어는 파일을 복사한다.

  • mkdir path 명령어는 디렉토리를 새로 생성한다.

  • mv old new 명령어는 파일 혹은 디렉토리를 이동하거나 명칭을 바꾼다.

  • rm path 명령어는 파일을 삭제(제거)한다.

  • * 은 파일명에 문자를 0 혹은 그 이상 매칭해서, *.txt.txt으로 끝나는 모든 파일을 매칭한다.

  • ? 은 파일명에 문자 하나를 매칭해서, ?.txtany.txt은 안되고 a.txt은 매칭이 된다.

  • 컨트롤 키를 사용하는 방법이 다양하게 기술될 수 있다; Ctrl-X, Control-X, ^X

  • 쉘은 휴지통을 갖고 있지 않다: 무언가 삭제되면, 정말 없어진 것이다.

  • 본인 작업 형태에 따라 다르지만, 나노(Nano)보다 더 강력한 텍스트 편집기가 필요할 수 있다.

파이프와 필터
  • cat 명령어는 입력 파일에 담긴 내용을 화면에 출력한다.

  • head 명령어는 입력 파일의 첫 10줄을 화면에 출력한다.

  • tail 명령어는 입력 파일의 마지막 10줄을 화면에 출력한다.

  • sort 명령어는 입력 파일을 정렬한다.

  • wc 명령어는 입력 파일의 행수, 단어수, 문자수를 센다.

  • command > file 명령어는 명령어의 출력결과를 파일로 방향을 변경시킨다.

  • first | second 이 파이프라인이다: 첫번째 명령어의 출력이 두번째 명령어의 입력으로 사용된다.

  • 쉘을 사용하는 최선의 방법은 파이프를 사용해서 간단한 단일 목적 프로그램(필터)을 조합하는 것이다.

루프(Loops)
  • for 루프는 리스트의 모든 원소에 대해서 명령어를 한번씩 모두 반복한다.

  • 모든 for 루프는 변수를 사용해서 현재 연산작업하는 것을 추적한다.

  • $name을 사용해서 변수(즉, 변수값을 얻는데)를 확장한다. ${name}도 사용될 수 있다.

  • 파일명에 공백, 인용부호, ‘*’ 혹은 ‘?’와 같은 와일드카드 문자를 사용하지 않는다. 왜냐햐면, 변수 확장을 난해하게 된다.

  • 파일에 일관된 명칭을 부여해서 와일드카드 패턴으로 매칭되기 쉽게 하고 루프를 돌릴 때 선택도 쉽게 만든다.

  • 이전 명령어를 편집하고 반복실행하는데 키보드 윗방향 화살표를 사용한다.

  • Ctrl-R 명령어를 사용해서 이전에 입력한 명령어를 검색한다.

  • history 명령어를 사용해서 가장 최근 명령어를 화면에 출력하고, !number을 사용해서 해당 숫자 명령어를 반복실행한다.

쉘 스크립트(Shell Scripts)
  • 재사용을 위해서 명령어들을 파일(일반적으로 쉘스크립트로 불림)에 저장한다.

  • bash filename 방식으로 파일에 저장된 명령어를 실행시킨다.

  • $@ 기호는 쉘 스크립트의 명령라인 인자 모두를 지칭한다.

  • $1, $2, … 은 명령라인 첫번째, 두번째 인자 … 를 지칭한다.

  • 변수 값에 공백이 포함되면, 인용부호로 변수를 감싼다.

  • 사용자가 어떤 파일을 처리할지 맡겨두는 것이 내장 유닉스 명령어들과 일관성을 유지시키고 더 유연하다.

파일, 문자, 디렉토리 등 찾기
  • find 명령어는 패턴과 매칭되는 구체적 특성을 갖는 파일을 찾아낸다.

  • grep 명령어는 패턴과 매칭되는 파일의 행을 선택해 준다.

  • --help 플래그는 대다수 배쉬 명령어와 배쉬 내에서 실행되는 프로그램에서 지원이 되어 명령어 혹은 프로그램이 실행되는 방식에 대한 추가 정보를 보여준다.

  • man command 명령어는 주어진 명령어에 대한 매뉴얼 페이지를 출력해준다.

  • $(command) 명령어는 명령어의 출력결과를 해당 위치에 삽입해 준다.

Summary of Basic Commands

Action Files Folders
Inspect ls ls
View content cat ls
Navigate to   cd
Move mv mv
Copy cp cp -r
Create nano mkdir
Delete rm rmdir, rm -r

Filesystem hierarchy

The following is an overview of a standard Unix filesystem. The exact hierarchy depends on the platform, so you may not see exactly the same files/directories on your computer:

Linux filesystem hierarchy

Glossary

absolute path
A path that refers to a particular location in a file system. Absolute paths are usually written with respect to the file system’s root directory, and begin with either “/” (on Unix) or “\” (on Microsoft Windows). See also: relative path.
argument
A value given to a function or program when it runs. The term is often used interchangeably (and inconsistently) with parameter.
command shell
See shell
command-line interface
A user interface based on typing commands, usually at a REPL. See also: graphical user interface.
comment
A remark in a program that is intended to help human readers understand what is going on, but is ignored by the computer. Comments in Python, R, and the Unix shell start with a # character and run to the end of the line; comments in SQL start with --, and other languages have other conventions.
current working directory
The directory that relative paths are calculated from; equivalently, the place where files referenced by name only are searched for. Every process has a current working directory. The current working directory is usually referred to using the shorthand notation . (pronounced “dot”).
file system
A set of files, directories, and I/O devices (such as keyboards and screens). A file system may be spread across many physical devices, or many file systems may be stored on a single physical device; the operating system manages access.
filename extension
The portion of a file’s name that comes after the final “.” character. By convention this identifies the file’s type: .txt means “text file”, .png means “Portable Network Graphics file”, and so on. These conventions are not enforced by most operating systems: it is perfectly possible (but confusing!) to name an MP3 sound file homepage.html. Since many applications use filename extensions to identify the MIME type of the file, misnaming files may cause those applications to fail.
filter
A program that transforms a stream of data. Many Unix command-line tools are written as filters: they read data from standard input, process it, and write the result to standard output.
flag
A terse way to specify an option or setting to a command-line program. By convention Unix applications use a dash followed by a single letter, such as -v, or two dashes followed by a word, such as --verbose, while DOS applications use a slash, such as /V. Depending on the application, a flag may be followed by a single argument, as in -o /tmp/output.txt.
for loop
A loop that is executed once for each value in some kind of set, list, or range. See also: while loop.
graphical user interface
A user interface based on selecting items and actions from a graphical display, usually controlled by using a mouse. See also: command-line interface.
home directory
The default directory associated with an account on a computer system. By convention, all of a user’s files are stored in or below her home directory.
loop
A set of instructions to be executed multiple times. Consists of a loop body and (usually) a condition for exiting the loop. See also for loop and while loop.
loop body
The set of statements or commands that are repeated inside a for loop or while loop.
MIME type
MIME (Multi-Purpose Internet Mail Extensions) types describe different file types for exchange on the Internet, for example images, audio, and documents.
operating system
Software that manages interactions between users, hardware, and software processes. Common examples are Linux, OS X, and Windows.
orthogonal
To have meanings or behaviors that are independent of each other. If a set of concepts or tools are orthogonal, they can be combined in any way.
parameter
A variable named in a function’s declaration that is used to hold a value passed into the call. The term is often used interchangeably (and inconsistently) with argument.
parent directory
The directory that “contains” the one in question. Every directory in a file system except the root directory has a parent. A directory’s parent is usually referred to using the shorthand notation .. (pronounced “dot dot”).
path
A description that specifies the location of a file or directory within a file system. See also: absolute path, relative path.
pipe
A connection from the output of one program to the input of another. When two or more programs are connected in this way, they are called a “pipeline”.
process
A running instance of a program, containing code, variable values, open files and network connections, and so on. Processes are the “actors” that the operating system manages; it typically runs each process for a few milliseconds at a time to give the impression that they are executing simultaneously.
prompt
A character or characters display by a REPL to show that it is waiting for its next command.
quoting
(in the shell): Using quotation marks of various kinds to prevent the shell from interpreting special characters. For example, to pass the string *.txt to a program, it is usually necessary to write it as '*.txt' (with single quotes) so that the shell will not try to expand the * wildcard.
read-evaluate-print loop
(REPL): A command-line interface that reads a command from the user, executes it, prints the result, and waits for another command.
redirect
To send a command’s output to a file rather than to the screen or another command, or equivalently to read a command’s input from a file.
regular expression
A pattern that specifies a set of character strings. REs are most often used to find sequences of characters in strings.
relative path
A path that specifies the location of a file or directory with respect to the current working directory. Any path that does not begin with a separator character (“/” or “\”) is a relative path. See also: absolute path.
root directory
The top-most directory in a file system. Its name is “/” on Unix (including Linux and Mac OS X) and “\” on Microsoft Windows.
shell
A command-line interface such as Bash (the Bourne-Again Shell) or the Microsoft Windows DOS shell that allows a user to interact with the operating system.
shell script
A set of shell commands stored in a file for re-use. A shell script is a program executed by the shell; the name “script” is used for historical reasons.
standard input
A process’s default input stream. In interactive command-line applications, it is typically connected to the keyboard; in a pipe, it receives data from the standard output of the preceding process.
standard output
A process’s default output stream. In interactive command-line applications, data sent to standard output is displayed on the screen; in a pipe, it is passed to the standard input of the next process.
sub-directory
A directory contained within another directory.
tab completion
A feature provided by many interactive systems in which pressing the Tab key triggers automatic completion of the current word or command.
variable
A name in a program that is associated with a value or a collection of values.
while loop
A loop that keeps executing as long as some condition is true. See also: for loop.
wildcard
A character used in pattern matching. In the Unix shell, the wildcard * matches zero or more characters, so that *.txt matches all files whose names end in .txt.

External references

Opening a terminal

Manuals

Miscellaneous