감동, 마음이 움직이는 것
[linux] tar 압축하기 본문
http://donggov.tistory.com/18
tar과 tar.gz의 차이가 궁금해서 찾아봤더니 tar은 그냥 묶어만 주는거고 tar.gz는 묶어서 압축까지 해주는 거였다.
나는 압축까지 필요해서 tar.gz로 묶기를 했고 명령어는 다음과 같다.
tar -zcvf 저장할이름.tar 폴더이름
풀고싶을 때는 다음과 같이 해주면 된다.
tar -xvf 저장된이름.tar
'Tips (Utility, Computer Language, and etc.)' 카테고리의 다른 글
[gnuplot] histogram 그리기 (0) | 2019.01.22 |
---|---|
[python] numpy array sort inverse (0) | 2019.01.17 |
[gnuplot] for loop & obj (circle, rec) (0) | 2018.12.13 |
[useful softwares and package] (0) | 2018.12.05 |
[python] plot during simulation (0) | 2018.12.04 |