An open API service indexing awesome lists of open source software.

https://github.com/aetonsi/pwsh__commandexistance

{pwsh} Powershell tool to check the existance of the given command.
https://github.com/aetonsi/pwsh__commandexistance

cmdlet command existance exists powershell pwsh

Last synced: 3 months ago
JSON representation

{pwsh} Powershell tool to check the existance of the given command.

Awesome Lists containing this project

README

        

# pwsh__CommandExistance
Powershell tool to check the existance of the given command.

# Usage
```powershell
# import module first
Import-Module ./CommandExistance.psm1

# use the imported function
$exists = Get-CommandExistance "My-Custom-Cmdlet"
# exists now contains $False or $True
```