Linux Commands - pyohamen/TIL GitHub Wiki

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