Linux tar

less than 1 minute read

extract tar

$ tar -xvf filename.tar
  • to turn off verbose
    $ tar -xf filename.tar
    
  • x: This command instructs to extract the files from a particular zip file.
  • v: This command stands for verbose that works to list out the files
  • Z: This command instructs to decompress the files.
  • F: This command instructs the filename on which you want to work.

Appendix

Reference

https://linuxhint.com/open-tar-file-linux/

Leave a comment