Pithy PowerShell
Here's some powershell examples from the work I've been doing over the last few days at work. Just some simple one-liners I demoed to show the power of powershell to scratch my own personal itches.
Generate list of .wiki files into a directory listing text file
BUT. It's better to use sc (set-content) to write non-utf16, so filesize is smaller and controllable and non-binary for svn (thanks soapyfrog)
Make a variable with files that exist in both the DevPlan and GeoWiki sub-directory
whow, that "if" statement is clunky. it's better to use where to filter out common files
Launch those files as FlexWiki-compatible browser URLs
Cache applicationLaunch 10 copies of a url, for both for two sub-domains (Fellow T.G.'ers should peep this)
Determine the svn revision and url of the current directory
$svnUrl = (svn info | select-string "url:*").Line.SubString(5) ; $svnUrl
Delete any non-svn-controlled Files