Posts Linux(debian) Command - 명령어에 대한 쉬운 해석...
Post
Cancel

Linux(debian) Command - 명령어에 대한 쉬운 해석...

command

FlyingDeuk's

라즈베리파이를 구매하고 나서 처음으로 리눅스를 사용해봤다.
국민(??)학교 시절 8비트 컴퓨터를 처음 접하면서 DOS 명령어중 dir/w가 기억나는 정도…
초심자로서 처음 사용하면서 궁금했던 내용들을 쓰려한다.

Wiki's

Linux 기본 명령어

태어나서 처음으로 사용해본 리눅스 명령어들…

기본 상식

1
2
3
4
~/  #/home 폴더와 같음
../ #상위폴더
./  #현재폴더
*   #대상폴더의 모든 내용

파일, 폴더 복사 (cp) - copy

1
$ cp test.txt test1.txt

파일, 폴더 이동 (mv) - move

1
$ mv test.txt test_end.txt
1
$ mv old_folder new_folder
1
$ mv test.txt /home/test_end.txt

Advanced copy

파일 복사와 이동을 progress bar로 나타내준다.

pv

1
$ sudo apt install pv
1
$ pv 대상파일 > 복사위치

파일, 폴더 삭제 (rm) - remove

1
$ rm test.txt

< Back to LINUX INDEX >

This post is licensed under CC BY 4.0 by the author.

Linux(Debian) CLI - Command Line의 세계

Python - 코딩 다시 시작!

Comments powered by Disqus.