ls
: 현재 경로에 존재하는 파일/폴더 확인pwd
: 현재 위치한 경로 출력cd
: change directory 디렉토리 이동, 이전 폴더 이동 → cd ..touch
: 빈 파일 생성 (ex. touch text.txt)mkdir
: make directory 빈 폴더 생성cat
: concatenate 파일 확인rm
: remove 파일 삭제rmdir [dir path]
또는 rm -d [dir path]
: remove directory 빈 폴더 삭제rm -r [dir path]
: 파일을 가지고 있는 폴더 삭제(안되는 경우 존재)rm -rf [path]
: 무조건 삭제cp
: copy 파일/폴더 복사하기mv <파일> 이동시킬 디렉토리
: move 파일/폴더 이동시키기mv <파일이름> <새이름>
: 이름 변경clear
: 처음 화면처럼 깨끗하게 터미널 정리history
: 이전에 사용한 명령어 확인하기man
: 명령어 매뉴얼 확인 -> q(나가기)1) 버전까지 확인 가능 - 단, 기본 내장 모듈은 확인 불가
2) 버전, 설치위치까지 확인 가능 - 정확한 이름을 알아야 함, 기본 내장 모듈은 확인 불가
pip list | grep 모듈명
pip freeze | grep 모듈명
-----------------------------------------------------
pip show 모듈명
cat
% cat test.txt
% cat > hello.py
print('hello, world')
% cat >> hello.py
print('hello, world')
print('hello, python')
Reference
1) https://yozm.wishket.com/magazine/detail/746/
2) https://zetawiki.com/wiki/Python_%EC%84%A4%EC%B9%98%EB%90%9C_%EB%AA%A8%EB%93%88_%EB%AA%A9%EB%A1%9D
3) https://velog.io/@grewtree/%ED%84%B0%EB%AF%B8%EB%84%90%EC%97%90%EC%84%9C-%ED%8F%B4%EB%8D%94-%EC%82%AD%EC%A0%9C-%EB%B0%A9%EB%B2%95
4) https://codechacha.com/ko/linux-cat/