| I think the reason I've been avoiding Powershell is specifically the pattern of `Verb-Noun -Option argument` the author brings up. I'm not saying it's not "better" (however you measure that) but I think it's very wordy and that's always been a turn-off and barrier of entry for me. some examples: pwd --> Set-Location ls --> Get-ChildItem cp --> Copy-Item I totally understand how bash's sometimes seemingly random shortcuts or acronyms can ALSO be a huge barrier of entry (just as it was for me!) and the straightforwardness of Powershell is a lot clearer, but personally now that I'm "in" on the short-hand of bash, it's been hard to start using Powershell. |
Essentially every command you'd use has a 2 or 3 character alias that is easy to remember and quick to type.
On top of it their almost programitacilly named, so if you know the powershell commands full name you can almost certainly guess the alias
Typing Get-Alias lists them all out.
https://docs.microsoft.com/en-us/powershell/module/microsoft...