码迷,mamicode.com
首页 > 其他好文 > 详细

Start-Process传递变量

时间:2014-08-25 18:45:24      阅读:194      评论:0      收藏:0      [点我收藏+]

标签:ar   art   c   方法   shell   list   r   start   oc   

如果$b="aa,bb"

Start-Process PowerShell.exe -Argumentlist "d:\w.ps1 $a $b $c"

Start-Process powershell.exe "d:\w.ps1 $a $b $c"

则 $b 中的 逗号 会被识别为特殊字符,在此处会自动被替换,通过 replace 方法可以保留 逗号,如下:

$b2 = $b.Replace(",","‘,‘")

Start-Process powershell.exe "d:\w.ps1 $a $b2 $c"

Start-Process传递变量

标签:ar   art   c   方法   shell   list   r   start   oc   

原文地址:http://www.cnblogs.com/dreamer-fish/p/3935547.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!