> For the complete documentation index, see [llms.txt](https://pyohamen.gitbook.io/til/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://pyohamen.gitbook.io/til/linux/command.md).

# Linux Commands

> Even if you don't deal with Linux, you'll encounter Linux commands while programming. So I tried to understand Linux commands that I met every time and recorded the usage examples.

| command    | discription                    | Example                                   |
| ---------- | ------------------------------ | ----------------------------------------- |
| alias      | 명령어 간소화                        | $ alias va="source venv/bin/activate"     |
| echo       | 출력                             | $ echo 'this is a test' -> this is a test |
| . / source | 실행                             | $ source .venv/bin/activate               |
| >          | 명령어 뒤에 나오는 파일에 wite, overwrite | $ echo 'hello' > text.txt                 |
| >>         | 명령어 뒤에 나오는 파일에 추가              | $ echo 'hello' >> text.txt                |
| pwd        | 현재 경로 출력                       | $ pwd                                     |
