Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[20220217] Linux - tar #247

Open
JuHyun419 opened this issue Feb 16, 2022 · 0 comments
Open

[20220217] Linux - tar #247

JuHyun419 opened this issue Feb 16, 2022 · 0 comments
Labels

Comments

@JuHyun419
Copy link
Owner

tar(Tape Archive): 지정한 데이터 및 디렉토리를 하나의 파일로 만듬

  • 파일을 하나로 묶을 때 및 파일을 풀 때 사용
    • tar -cvzf 타르볼파일명 디렉토리명/파일명
    • tar -xvzf 타르볼파일명
      • c: create
      • v: verbose(명령어를 화면에 출력해줌)
      • z: zip으로 압축
      • f: file 이름을 명시적으로 지정
      • x: extract(추출)
      • t: list
      • tar -cvzf work.tgz ./WORK
        • WORK 디렉토리 하위 파일들을 work.tzg 로 묶음
        • 확장자를 보통 .tar로 사용 | .tar.gz → .tgz로 표기
      • tar -tf work.tgz

tar -cvzf (파일 묶기)

image

tar -xvzf (파일 풀기)

image

tar -tf (tar 리스트 보기)

image

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

1 participant