-대소문자 구분
-파일이름의 시작을 '.'으로 하는 것은 히든파일을 의미
-a : '.'으로 시작하는 파일들을 숨기지 않기
-l : 길게 나열하기
-i : 파일마다 인덱스숫자를 같이 출력
-F : 파일의 타입을 출력
-R : 디렉토리 내용을 인쇄
1) 그 후 안에 들어갈 내용 생성
2) Ctrl+D로 종료
-i : 대화식 제거
-f : 강제 제거
-r : 재귀적 제거
: 파일과 다른 디렉토리의 집합(모임)
-p : 중간 디렉토리 생성
절대경로 : 루트부터 그 아래 디렉토리 지정
상대경로 : 루트부터 시작하지 않고 현재위치를 기준으로
~ : 사용자의 홈 디렉토리
which : path에서 커맨드파일을 찾음
whereis : source/binary와 manual sections에서 커맨드 파일 검색
-b : binary file
-m : manual file
-s : source file
find [path condition][operation]
– -print : 파일의 절대경로 출력
– -ls : 파일의 내부 출력
– -exec command {} \; : 파일 실행
– -ok command {} \; : 대화식으로 파일 실행
.gz로 저장
압축
gzip [filename/directory]
압축풀기
gzip –d [.gz file]
gunzip [.gz file]
.bz2로 저장
압축
bzip2 [filename/directory]
압축풀기
bzip2 –d [.bz2 file]
bunzip2 [.bz2 file]
.zip 파일로 저장
압축
zip [.zip-filename][filename-to-compress]
압축풀기
unzip [.zip file]
.tar 파일로 저장
압축
tar –cvf [.tar file][files]
나열
tar –tf [.tar file]
압축풀기
tar –xvf [.tar file]
압축
tar –zcvf [.tgz-file][files]
tar –jcvf [.tbz2-file][files]
압축풀기
tar –zxvf [.tgz-file]
tar –jxvf [.tbz2-file]