Linux 中的 && 在 Windows 中相当于什么
例如
cd\
cd rcA
powershell "ls | where {$_.Length -lt 100gb} | Remove-Item -Force -Recurse"
cd rcA
如果无法执行,要添加什么才能使脚本停止。对于 Linux,应该是cd rcA &&
答案1
cd rcA
如果无法执行,需要添加什么才能使脚本停止?
您也可以&&
使用:cmd
cd rcA && powershell "ls | where {$_.Length -lt 100gb} | Remove-Item -Force -Recurse"