vps交流

Powershell的遍历


本帖最后由 好鸭 于 2022-6-3 22:44 编辑

把LOC当博客了Powershell的遍历 Powershell的遍历 Powershell的遍历

记录一下

Powershell的遍历

  1. ls|ForEach-Object -Process{
  2. echo $_
  3. echo $_.name
  4. echo $_.namestring
  5. }

复制代码

  1. ls|ForEach{
  2. echo $_
  3. echo $_.name
  4. echo $_.namestring
  5. }

复制代码

类似linux的

  1. ls|while read line{
  2. echo $line
  3. }

复制代码