| [ internet ] in KIDS 글 쓴 이(By): AHMLHS (기어가는놈) 날 짜 (Date): 1995년02월15일(수) 16시55분22초 KST 제 목(Title): FAQ : *.Z and *.gz *.tar.Z : 1st method) % uncompress *.tar.Z % tar -xvf *.tar 2nd method) % zcat *.tar.Z | tar -xvf - 3nd method) % tar -Zxvf *.tar.Z (When using GNU tar) *.tar.gz: 1st method) % gunzip *.tar.gz % tar -xvf *.tar 2nd method) % gzcat *.tar.gz |tar -xvf - (If gzcat available) 3rd method) % tar -zxvf *.tar.gz (If GNU tar available) *.tgz == *.tar.gz More Information appriciated.. ( And if updated, this article will be deleted.) AHMLHS! only MY.... |