I am having three files one is .txt ,one is .pdf and the other is .csv . How to zip these three files in open folder and rename the folder.
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试):
问题:
回答1:
You can do:
zip file.zip file.csv file.pdf file.txt
回答2:
Use Gzip, compress using:
tar -czvf file.tar.gz file1 file2 file3
And extract using:
tar -xzvf file.tar.gz