Skip to content

Instantly share code, notes, and snippets.

@poshcodebear
Last active March 22, 2016 18:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save poshcodebear/087892243b74aa2af750 to your computer and use it in GitHub Desktop.
Save poshcodebear/087892243b74aa2af750 to your computer and use it in GitHub Desktop.
Scripting Games March 2016: Basic Diacritics
Get-ChildItem 'C:\temp\FileShare' -Recurse | foreach {if ($_.Name -match '[\p{IsLatin-1Supplement}-[\x80-\xbf\xd7\xf7]]+') {$_ | select Name, Directory, CreationTime, LastWriteTime, Length}} | Format-Table -AutoSize
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment