paxit.cmd
来自「来自网络,国外网友做的,vc++代码,测试过,表示感谢. 可以读取串口GPS数」· CMD 代码 · 共 42 行
CMD
42 行
@echo off
d:
cd \cpp
cd nmea0183
REM Make the temporary directory
c:
cd \
mkdir pax
cd pax
REM Copy all of the files for distribution.
REM C++ source code
xcopy d:*.cpp /s /e
REM Header Files
xcopy d:*.h* /s /e
REM CMD files
xcopy d:*.cmd /s /e
REM Message string resource files
xcopy d:*.mc /s /e
REM Resource scripts
xcopy d:*.rc /s /e
REM Release notes
xcopy d:*.txt /s /e
REM Make files
xcopy d:*.mak /s /e
REM Visual C++ 5.0 Workspace files
xcopy d:*.dsw /s /e
REM Visual C++ 5.0 Project files
xcopy d:*.dsp /s /e
REM Icons
xcopy d:*.ico /s /e
REM other resource scipts
xcopy d:*.rc2 /s /e
REM Version Information Resources
xcopy d:*.ver /s /e
REM Now pax the stuff. Although they don't tell you, the path specified by
REM the -f parameter to pax MUST BE IN ALL UPPERCASE LETTERS!!!!!
pax -w -f //C/TEMP/NMEA0183.TAR .
REM now get rid of the directory tree
cd ..
rem deltree /Y pax
cd temp
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?