如何获取自定义 Powershell 函数的列表? [英] How to get a list of custom Powershell functions?

查看:41
本文介绍了如何获取自定义 Powershell 函数的列表?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我使用自定义 powershell 函数让我的生活更轻松.

I use custom powershell functions to make my life easier.

示例:

# custom function
> function build {cmd /c build.ps1}

# invoke the function
> build

这非常有用,可以让我快速运行我的构建脚本.
不幸的是,很容易忘记我创建的所有自定义函数.

This works great to allow me to run my build script quickly.
Unfortunately it's easy to forget all of the custom functions that I've created.

是否有可以运行的 cmdlet 来转储我的自定义函数列表?随后,一旦我知道这些函数是什么,是否有可以运行的 cmdlet 来删除我不再需要的那些?

Is there a cmdlet that I can run to dump a list of my custom functions? Subsequently, once I know what those functions are, is there a cmdlet that I can run to delete ones that I no longer need?

推荐答案

获取可用函数列表

> Get-ChildItem function:\

删除powershell函数

To remove a powershell function

# removes `someFunction`
> Remove-Item function:\someFunction

这篇关于如何获取自定义 Powershell 函数的列表?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆