create a tar.gz file in windows code example
Example 1: create tar gz file from directory
tar -czf tarball.tar.gz my_directory/
Example 2: open .tar.gz windows
gunzip.exe example.tar.gz
tar.exe xf example.tar
tar -czf tarball.tar.gz my_directory/
gunzip.exe example.tar.gz
tar.exe xf example.tar