Computer Science/Linux 새로비 2018. 6. 23. 14:23
1. 압축하기 tar -cvzf [compressd file name] [to be compressed file or directory name] # example tar -cvzf foo.tar.gz * # Compress all the files included in the path into foo.tar.gz tar -cvzf foo.tar.gz * --ignore-failed-read # Ignore the file which doesn't have the permission 2. 압축풀기 tar -xvzf [to be decompressd file name] #example tar -xvzf foo.tar.gz # Decompress foo.tar.gz 3. 옵션 -x : tar를 압축 해제 -..
더 읽기