使用SoapUI测试webservice接口详细步骤
286
2022-08-30
powershell_pwsh命令缩写(funtion/Set-Alias)/用py代替python在命令行中使用python
文章目录
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 goalAttention! 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}
效果:
永久化别名设置
总结
function命令更加通用,为较为复杂的逻辑设置缩写Set-Alias命令可以为具体的命令设置缩写,但是参数不宜参与缩写(可以在调用的时候传入合适的参数即可).
python 用py代替
function更为通用,但是某些情况下,set-alias 更合适,例如,为python赋值一个别名,这样就可以直接通过py调用python,同时传递个python的参数py照样可以接收,如果用函数来起别名,那么在传参给py时就需要考虑较多内容。更多细节查看pwsh的文档:
functionSet-Alias english
版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。
发表评论
暂时没有评论,来抢沙发吧~