zipsrc.bat

来自「Wxpython Implemented on Windows CE, Sou」· Batch 代码 · 共 29 行

BAT
29
字号
@echo off
rem Zip up a source distribution of Tex2RTF and associated apps.
set src=c:\wx2dev\wxWindows\utils\tex2rtf
set dest=%src\deliver
if "%src" == "" goto usage
if "%dest" == "" goto usage
echo About to archive Tex2RTF
echo   From   %src
echo   To     %dest
echo CTRL-C if this is not correct.
pause

erase %dest\tex2rtf_src.zip

cd %src
echo Zipping...

zip32 -@ %dest\tex2rtf_src.zip < %src\tex2rtf\distrib\src.rsp

cd %dest

echo Tex2RTF source archived.
goto end

:usage
echo Tex2RTF source distribution.

:end

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?