728x90
TAR 파일 압출
tar -cvf {압축 후 파일명.tar} {원본 폴더명}
tar -cvf after_tar.tar original_folder
TAR 파일 압축 해제
tar -xzvf data.tgz
ZIP 파일 압축
zip {압축 후 파일명.zip} {원본 폴더명}
zip after_zip.zip original_folder
#현재 폴더와 하위 폴더 압축
zip after_zip.zip -r ./*
ZIP 파일 압축 해제
unzip {압축 해제할 폴더명.zip}
unzip data.zip
'CODE > Linux' 카테고리의 다른 글
리눅스 아나콘다 설치 / Installing anaconda in linux , nvcc 설치 (0) | 2025.02.06 |
---|---|
AssertionError: Torch not compiled with CUDA enabled (0) | 2022.12.01 |
linux cuda 확인 명령어 (0) | 2021.11.17 |
linux resolution 해결하기 (0) | 2021.11.17 |
리눅스 LINUX #01 (0) | 2021.11.12 |