美文网首页
PowerShell常用语法

PowerShell常用语法

作者: 游戏创作者 | 来源:发表于2022-04-13 14:38 被阅读0次
    • 输出
    echo "hello word"
    
    • 输出到文件
    echo "hello" > test.txt   //覆盖
    echo "word" >> test.txt  //追加
    
    • 判断SVN进程是否在运行,如果在运行,杀死进程
    $Running = Get-Process svn.exe -ErrorAction SilentlyContinue
    if($Running -eq $null)
    {
      echo "svn not run"
    }else
    {
      taskkill /F /IM svn.exe /T
    }
    
    • 判断文件或文件夹是否存在
    $isApk = (Test-Path ".svn")
    if("$isApk" -eq "False")
    {
      echo "checkout"
    }
    
    • 删除文件
    $filepath= "E:\Temp\test.ps1"
    Remove-Item $filepath
    
    • 删除文件夹及内容
    $dirpath = "E:\Temp"
    Remove-Item $dirpath -recurse
    

    相关文章

      网友评论

          本文标题:PowerShell常用语法

          本文链接:https://www.haomeiwen.com/subject/kwrasrtx.html