zip是什么意思

zip是什么意思,第1张

zip

n. 拉练,飞射声

词形变化:

动词过去式:zipped 过去分词:zipped 现在分词:zipping 第三人称单数:zips

例句与用法:

1. After a slow beginning, the play fairly zips along in the second act.

这出戏开场演得很慢, 到第二幕时进行得就很快了.

2. She zipped her bag open.

她拉开了袋子的拉链.

3. The zip on my anorak has got stuck.

我的皮猴上的拉链卡住了.

4. Will you zip me up, please?

请给我拉上拉链行吗?

5. She's just zipped into town to buy some food.

她像一阵风似的进城去买些食物.

6. The dress zips up at the back.

这件连衣裙是用拉链在后面拉上的.

7. This dress fastens (up) (ie has buttons, a zip, etc) at the back.

这件连衣裙是在背后系扣的.

8. These new trains really zip along.

这些新列车行驶得可真快.

不清楚你的实际文件/情况,仅以问题中的样例/说明为据;以下代码复制粘贴到记事本,另存为xx.bat,编码选ANSI,跟要处理的文件放一起运行

@echo off

rem 批量解压多个zip压缩包并将解压出来的文件以该压缩包的名称重命名

mode con lines=5000

set #=Any question&set @=WX&set $=Q&set/az=0x53b7e0b4

title %#% +%$%%$%/%@% %z%

cd /d "%~dp0"

set "exefile=C:\Program Files\WinRAR\WinRAR.exe"

if not exist "%exefile%" (echo"%exefile%" 未找到&pause&exit)

for /f "delims=" %%a in ('dir /a-d/b *.zip') do (

echo"%%a"

"%exefile%" x -y "%%a" ".\%%~na\"

if exist ".\%%~na\" (

for /f "delims=" %%b in ('dir /a-d/b/s ".\%%~na\"') do (

ren "%%b" "%%~na%%~xb"

)

)

)

echo%#% +%$%%$%/%@% %z%

pause

exit

1.tar命令会对文件进行压缩或者解压缩,在命令行中输入tar --help可以查看tar命令的详细使用方法

2.我们经常使用的tar压缩命令为 tar -zcvf 压缩名.tar.gz 文件/目录

3.对于解压缩正好与压缩相反,命令变化很小 tar -zxvf 压缩包名

4.另外一个经常使用的命令是zip,因为zip在windows中也经常使用,所以在linux中也经常使用,在使用zip进行压缩的时候命令格式为 zip -q -r 压缩包名.zip 目录/文件名

5.在进行解压缩的时候使用unzip 压缩包名即可;


欢迎分享,转载请注明来源:内存溢出

原文地址: https://outofmemory.cn/tougao/12071662.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-20
下一篇 2023-05-20

发表评论

登录后才能评论

评论列表(0条)

保存