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
Last updated