Recent content by imported_lacan

  1. I

    MS releases PowerShell RC1

    I think you are looking for a function instead of an alias: > function DirWithAttrib([string]$attrib) {dir|WHERE {$_.Attributes -match $attrib}} > function ddir() {DirWithAttrib Directory} > ddir (Returns just dirs) > DirWithAttrib System (Returns System entries) I think (I could...
  2. I

    MS releases PowerShell RC1

    Good to see others using this. This shell is something that once it clicks (I'd say a few hours of determined use), the implications for automating simple (or even not so simple) tasks are astounding. I have used cygwin for a long time to get access to bash, since it was/is SOO much better...