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.
- Host: GitHub
- URL: https://github.com/aetonsi/pwsh__commandexistance
- Owner: aetonsi
- License: wtfpl
- Created: 2022-09-05T08:50:17.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-11-07T11:59:57.000Z (over 2 years ago)
- Last Synced: 2025-02-24T12:14:28.787Z (3 months ago)
- Topics: cmdlet, command, existance, exists, powershell, pwsh
- Language: PowerShell
- Homepage:
- Size: 2.93 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
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
```