Hacker News new | ask | show | jobs
by hootz 56 days ago
Nushell, from their website, looks a lot like PowerShell's idea of a shell, but less verbose.
2 comments

Yup. Which is kinda funny, because back when I was a young dev using Windows I never liked nor understood PS.
> when I was a young dev … never understood PowerShell

This makes me feel old.

PowerShell is not really that much more verbose. This is the equivalent of the nushell command by crabsand.

  dir | ? LastWriteTime -lt (Get-Date).AddDays(-21) | del
Too much casing changes, IMO
Sorry. Fixed it for you.

  dir | ? lastwritetime -lt (get-date).adddays(-21) | del
PowerShell is not case sensitive (but nushell and bash are).