Wasted thirty minutes trying to debug why some PowerShell module I installed wasn't working.
Turned out it was because it used the "where" -> "Where-Object" alias...
...which I removed on my machine in order to be able to call "where.exe" without always needing to specify the ".exe".
Turned out it was because it used the "where" -> "Where-Object" alias...
...which I removed on my machine in order to be able to call "where.exe" without always needing to specify the ".exe".
Comments
(Again, not me, just saying it's not as clear cut)
Hey @jsnover.com, huge fan here. I owe a significant part of my career success to PowerShell, so thank you for creating it! 😊
Any thoughts on whether `where` and `foreach` should be treated as official keywords and used in production code?
On this one, we went with principle - a fully consistent model.
I assumed that the community would not shy away from aliases the way they have and would use them where they made sense.
In retrospect, I should have hardwired those
path:*.ps1 /\|\s*where [{a-zA-Z\-]/
path:*.ps1 /\|\s*where-object [{a-zA-Z\-]/
(NPM completions in the shell)
Might be worth contacting the module's dev and asking if it's abandoned or just idle for the moment. Could help you decide whether to fork, PR, etc.
B - This is why I prefer to only override commands in modules.
C - This is why I don't personalize a profile too much ( just load a module or two )