
Windows 命令行/批处理/脚本
woyaoying
唯有懂得生活的人才能做出好产品,精益求精,不断追求卓越.致力于开发超大型MMO服务器!
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
格式化命令行日期显示
BatchFile code@echo offreg add "HKEY_CURRENT_USER/Control Panel/International" /v sTimeFormat /t REG_SZ /d HH:mm:ss /f>nulreg add "HKEY_CURRENT_USER/Control Panel/International" /v sShortDate /t原创 2008-10-20 14:59:00 · 1091 阅读 · 0 评论 -
命令行模式下判断是否目录
SET CURDIR=%cd%echo Current directory is %CURDIR%SET ISDISK=%CURDIR:~-1%If "%ISDISK%" == "/" ( echo Its not a directory.)Else ( echo Its a directory.)原创 2008-10-20 15:01:00 · 855 阅读 · 0 评论 -
Win 命令行特殊字符转译
echo > and > and C:/>echo The syntax of the command is incorrect.C:/>echo ^The following characters are special and have to be escaped:, |, &, or ^转载 2008-11-03 17:05:00 · 1383 阅读 · 0 评论