Answers for "terminal zip command"

1

terminal zip

# to compress
tar -zcvf archive_name.tar.gz folder_to_compress
# to extract
tar -zxvf archive_name.tar.gz

# the "v" flag is for verbose and is not required
Posted by: Guest on April-12-2021
0

zip command line

zip -r {filename.zip} {foldername}
Posted by: Guest on March-17-2022

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language