当前位置 : 主页 > 编程语言 > python >

powershell_pwsh命令缩写(funtion/Set-Alias)/用py代替python在命令行中使用python

来源:互联网 收集:自由互联 发布时间:2022-06-14
文章目录 ​​example config content:​​ ​​永久化别名设置​​ ​​总结​​ ​​python 用py代替​​ example config content: # #Set-Alias serials # Set-Alias ep "explorer " # # Note! parameter is not allowed


文章目录

  • ​​example config content:​​
  • ​​永久化别名设置​​
  • ​​总结​​
  • ​​python 用py代替​​

example config content:

<# #Set-Alias serials
#>
Set-Alias ep "explorer "
<# # Note! parameter is not allowed in the Set-Alias,for instance:`Set-Alias ep "explorer ." will not works ;
however ,you can add the `ep parameter` to run the cmdlet;
of course ,if your parameters are often long paramter,you can try the function to achieve your goal
Attention! you'd better do not let the two kind names with the same name(one of them will not work normally.)
#>

# path jump serials:
#explorer there
function ept {explorer .}
function loginCxxuAli {ssh $env:cxxu_ali }
# jump to your frequently used folder(path)
function repos {Set-Location -Path $env:repos}
function usersByCxxu {Set-Location -Path $env:usersByCxxu}

效果:

powershell_pwsh命令缩写(funtion/Set-Alias)/用py代替python在命令行中使用python_赋值
根据上述配置​​​ep .​​可以达到相同的目的.

永久化别名设置

只需要将这些命令写入到文件​​$profile​​​即可
通过powershell 输入​​​notepad $profile​​​即可编辑
如果提示没有该目录,创建即可(但是要在对应位置)
输入​​​$profile​​​可以查看位置.
powershell_pwsh命令缩写(funtion/Set-Alias)/用py代替python在命令行中使用python_python_02

总结

  • ​function​​命令更加通用,为较为复杂的逻辑设置缩写
  • ​Set-Alias​​命令可以为具体的命令设置缩写,但是参数不宜参与缩写(可以在调用的时候传入合适的参数即可).

python 用py代替

  • function更为通用,但是某些情况下,set-alias 更合适,例如,为python赋值一个别名,这样就可以直接通过py调用python,同时传递个python的参数py照样可以接收,如果用函数来起别名,那么在传参给py时就需要考虑较多内容。

  • 更多细节查看pwsh的文档:
  • ​​function​​
  • ​​Set-Alias english​​


网友评论