Guest User

Untitled

a guest
Aug 19th, 2018
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. #extract
  2. tar -xvf file.tar
  3. tar -xvf file.tar -C /mzdir
  4. tar -xvzf file.tar.gz
  5.  
  6. x: This tells tar to extract the files.
  7. z: uncompress the file (gzip).
  8. v: verbose
  9.  
  10. f: This options tells tar that you are going to give it a file name to work with.
  11.  
  12. # dtrx
  13. dtrx stands for “Do The Right Extraction.” It's a tool for Unix-like systems that takes all the hassle out of extracting archives.
  14.  
  15. $ dtrx linux-3.0.1.tar.bz2
  16.  
  17. That's basically the same thing as:
  18. $ tar -jxf linux-3.0.1.tar.bz2
Add Comment
Please, Sign In to add comment