如何制作自定义Powershell命令?

时间:2019-11-21 01:10:04

标签: powershell

我想发出一个powershell命令,例如startcode,该命令应该转到另一个文件夹并运行python文件。我希望可以从我的powershell终端所在的任何目录中访问此命令。到目前为止,我已经使用以下命令制作了一个powershell程序:

function startcode() {
  cd ~
  cd Blah blah blah
  echo 'Starting!!'
  python hello.py
}

我如何使startcode命令随处可见?

0 个答案:

没有答案