unix tar 打包kiS600文件夹
To create a tar archive of the "kiS600" folder in Unix, you can use the following command:
tar -czvf kiS600.tar.gz kiS600
Explanation of the command:
tar: The command-line utility used to create tar archives.-czvf: The options used for creating a gzipped tar archive with verbose output.c: Create a new archive.z: Compress the archive using gzip.v: Verbose output (display progress and details).f: Specify the filename of the archive.
kiS600.tar.gz: The desired name of the tar archive file.kiS600: The folder or directory you want to include in the archive.
After running the command, a tar archive named "kiS600.tar.gz" will be created in the current working directory, containing all the files and subdirectories within the "kiS600" folder
原文地址: https://www.cveoy.top/t/topic/iMDy 著作权归作者所有。请勿转载和采集!