You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

пре 6 година
1234567
  1. $fasm = "U:\fasm\fasm.exe"
  2. $files = gci -r -File | where {$_.extension -eq ".asm"}
  3. Foreach ($i in $files)
  4. {
  5. Write-Host $i.Name
  6. & $fasm $i.Name
  7. }