Advertisement
Guest User

Untitled

a guest
Sep 22nd, 2019
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. param ([int]$c, [string]$p1)
  2. $p2 = Join-Path $p1 -ChildPath "Greater"
  3. New-Item -Path $p2 -ItemType 'Directory' -Force
  4. Get-ChildItem -Path $p1 | Where-Object {$_ -match "[$c-9]"} | Foreach-Object {Move-Item -Path $_.FullName -Destination $p2}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement