When you are in a unix based system like Ubuntu, CentOS etc. You will need to know how you can extract a tar.gz file using command line interface (CLI)
- Take an example, we have a file
myFile.tar.gz
cd
into the same directory as the file.- Now run the command
tar -xzf myFile.tar.gz
- This will create a directory
/myFile
and put all extracted content inside it.
Leave a Reply