powershell 执行多条命令
需求同时执行多条命令以前在win的cmd上执行多条命令是用&&连接即可,但是这在powershell中并不管用方法1使用 -and进行连接,如(mkdir test) -and (cd test)方法2使用;号进行连接,如mkdir test;cd test方法2使用shift+enter换行输入多行命令,如在powershell中使用shift+enter表示换行继续输入mkdir testcd test...