Я пытаюсь сделать что-то, что я считаю тривиальным
Я просто хотел объявить функцию как
function mds {
python -m "blabla" $args
}
, но она просто не работает под PowerShell, я получил
mds : The term 'python -m os:String' is not recognized as the name of a cmdlet, function, script file, or operable program. Ch
eck the spelling of the name, or if a path was included, verify that the path is correct and try again.
At line:1 char:1
как я понимаю, powershell принимает целую python -m "asdfadsf" в качестве команды, но почему и как я могу ее обойти?