I'm still getting used to PowerShell, trying to use it as much as possible.
One snag I'm hitting is that my unix background leads me to expect and want some things that I'm having difficulty finding.
For example, I'd like to fix it so that
- 'ls' would mean 'get-childitem -force -name'
- 'dir' would mean 'get-childitem -force'
What is the best way to do this?
I wasted a little time trying to define these as aliases, since I didn't realize that PS aliases are one-word items.
One snag I'm hitting is that my unix background leads me to expect and want some things that I'm having difficulty finding.
For example, I'd like to fix it so that
- 'ls' would mean 'get-childitem -force -name'
- 'dir' would mean 'get-childitem -force'
What is the best way to do this?
I wasted a little time trying to define these as aliases, since I didn't realize that PS aliases are one-word items.