Answers for "tar -xzf ?"

CSS
2

tar -cvzf

tar -czvf file_name.tar.gz /path/to/folder
Posted by: Guest on July-26-2021
0

tar xz

$ tar -xf Python-3.7.4.tgz

$ cd python-3.7.4

$ ./configure --enable-optimizations
# The --enable-optimizations option will optimize the Python binary by 
# running multiple tests. This makes the build process slower.

$ make

$ make altinstall
# Do not use the standard make install as it will overwrite 
# the default system python3 binary
Posted by: Guest on May-05-2021

Browse Popular Code Answers by Language