Currently, it is inconvenient for workflows where I want to use Unix-like commands in cmd but prefer the standard commands in pwsh.
For example, if I type rm - in pwsh and then press Tab, PowerShell completes options for Remove-Item. However, the command that actually gets executed is rm.exe from coreutils, creating an inconsistency where the completed options do not work as expected.
Currently, it is inconvenient for workflows where I want to use Unix-like commands in cmd but prefer the standard commands in pwsh.
For example, if I type
rm -in pwsh and then press Tab, PowerShell completes options forRemove-Item. However, the command that actually gets executed isrm.exefrom coreutils, creating an inconsistency where the completed options do not work as expected.