Skip to main content
1 of 2
John Oxley
  • 727
  • 4
  • 12
  • 23

Powershell: Perform an operation on all files in a directory

In bash, the equivalent would be

for x in `ls *.zip` do ; unzip $x ; done

How do I do this in Windows Powershell

John Oxley
  • 727
  • 4
  • 12
  • 23