bacth参数说明 cmd parameter
http://www.robvanderwoude.com/parameters.php
Windows NT 4 introduced a set of new features for command line parameters:
| %CmdCmdLine% | will return the entire command line as passed to CMD.EXE | 
| %* | will return the remainder of the command line starting at the first command line argument (in Windows NT 4, %* also includes all leading spaces) | 
| %~dn | will return the drive letter of %n (n can range from 0 to 9) if %n is a valid path or file name (no UNC) | 
| %~pn | will return the directory of %n if %n is a valid path or file name (no UNC) | 
| %~nn | will return the file name only of %n if %n is a valid file name | 
| %~xn | will return the file extension only of %n if %n is a valid file name | 
| %~fn | will return the fully qualified path of %n if %n is a valid file name or directory | 
| Note: | %CmdCmdLine% and %* will leave all delimiters intact, except, in Windows 2000 and later, leading spaces before the first argument | 
bacth参数说明 cmd parameter的更多相关文章
- webfrom 总结
		
网上看了很多理论,然而知易行难.在实际工作中还是存在很多问题. 下面是使用webform过程中的总结. 1.不使用服务端控件 表单有post和get两种方法,可以通过 form methed='pos ...
 - 如何利用Github+Appveyor+Nuget打造自己的.net core开源库
		
以下教程基于你有一个托管在Github上的.net core项目,如果没有的可以自己fork一个或者自己创建了默认的项目即可. 我们打开需要生成nuget包的项目中的project.json文件,有关 ...
 - JavaScript笔记杂谈篇(啥都有)
		
二维码缩放比例以43PX的倍数缩放最为标准. NuGet相关管理http://www.cnblogs.com/dudu/archive/2011/07/15/nuget.html 学习笔记: http ...
 - vs 2010 中类文文件模板的修改
		
类模板 文件的修改,以前也修改过,这次有个同事问我,搞了有一会才搞定,这里还是记录分享下. 如果想在每次创建文件时,自动生成文档注释(注意是自动生成文档注释而不是帮助文档),如下面的代码,需要设置VS ...
 - Visual Studio 2010 类模板的修改
		
第一步:找到类文件模板路径 C:\Program Files (x86)\Microsoft Visual Studio 10.0\Common7\IDE\ItemTemplates\CSharp\C ...
 - Rehat 5.8下oracle11g安装
		
Oracle 11g Redhat 5安装 一.检查硬件是否满足要求 检查一内存 On Linux x86: At least 1 GB of RAM 内存至少1G To determine the ...
 - ssi(Server Side Includes)介绍
		
Server Side Includes (SSI) is a simple interpreted server-side scripting language used almost exclus ...
 - 第11条:理解objc_msgSend的作用
		
C语言使用“静态绑定”,也就是说,在编译期就能决定运行时所应调用的函数(也就是说函数地址硬编码在指令之中). 如果是内联函数,就无法硬编码在指令之中,而是要在运行期读取出来(也就是动态绑定). 在底层 ...
 - Oracle DML容错处理(1)
		
Oracle dml操作过程中可能出现键重复或者数据类型不一致等问题,一般进行数据处理时候需要对这些可能出现的错误提前考虑,避免更新失败.Oralce给出了一些其他解决方案,以在不同场景下使用. 1. ...
 
随机推荐
- 一张图表,人人都能建立自己的AARRR运营模型
			
每次跟同行聊运营,聊用户,聊产品,最后都会回到AARRR模型上来,这个用户全生命周期模型概括了互联网产品运营的5个关键环节. 获客是运营的基础,促进用户活跃才能让产品有生命力,提升留存减少流失让用户规 ...
 - 在C#代码中应用Log4Net系列教程(附源代码)地址
			
在博客园看到一篇关于Log4Net使用教程,比较详细,感谢这位热心的博主 博客园地址:http://www.cnblogs.com/kissazi2/archive/2013/10/29/339359 ...
 - nginx1.6.3
			
Nginx1.6.3安装配置 安装时关闭防火墙和selinuxservice iptables stopsed -i "s/selinux=enabled/selinux=disable/g ...
 - AR+ 实时音视频通话,虚拟与现实无缝结合
			
今年中旬 Google 在万众期待下推出了 ARCore,能将现实与数码完美无缝地融合在一起,丰富我们的现实世界.通过它开发者可以更加快速方便地在 Android 平台开发 AR 应用,凭借 AR 技 ...
 - 公钥加密算法那些事 | RSA 与 ECC 系统对比
			
一.背景 据记载,公元前 400 年,古希腊人发明了置换密码.1881 年世界上的第一个电话保密专利出现.在第二次世界大战期间,德国军方启用「恩尼格玛」密码机,密码学在战争中起着非常重要的作用. 随着 ...
 - 谢孟军:The State of Go | ECUG Con 精粹系列
			
本月 17 日,Go 1.8 版本火热发布.相较于以往的版本,Go 1.8 具体有哪些新的特性呢?想必这是不少 Gopher 们热切关注和讨论的问题.作为著名的Golang 布道者,Gopher Ch ...
 - Hotel(poj 3667)
			
题意:询问区间最长连续空串 /* 用线段树维护区间最长连续左空串和右空串 */ #include<cstdio> #include<iostream> #define N 50 ...
 - Java开发一些小的思想与功能小记(二)
			
1.用if+return代替复杂的if...else(if+return) public static void test1(String str) { if ("1".equal ...
 - jascript的this
			
一,this基础 1. 虽然在jascript中一切都是对象,即函数也是一个对象,但在函数中的this并不是指函数本身. 2. 函数中的this指向不是在函数定义时确定的,而是在函数调用时确定的. 3 ...
 - Python基础教程笔记——第1章
			
1.8 函数 pow(x,y) x^y abs(x) 取数的绝对值 round(x) 会把浮点数四舍五入为最接近的整数 floor(x) 向下取整的函数,但是需要先imp ...