forked from kelleyma49/PSFzf
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add new function for Scoop apps (kelleyma49#130)
* Add new function for Scoop apps * missing colon
- Loading branch information
1 parent
2bd1162
commit 15bcd9b
Showing
7 changed files
with
140 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,79 @@ | ||
--- | ||
external help file: PSFzf.psm1-help.xml | ||
schema: 2.0.0 | ||
--- | ||
|
||
# Invoke-FuzzyScoop | ||
## SYNOPSIS | ||
Starts fzf on Scoop applications list. | ||
## SYNTAX | ||
|
||
``` | ||
Invoke-FuzzyScoop [-subcommand <string>] [-subcommandflags <string>] | ||
``` | ||
|
||
## DESCRIPTION | ||
Allows the user to select (multiple) applications from locally stored Scoop buckets and runs `subcommand` on them. Default value of `subcommand` is `install`. | ||
## EXAMPLES | ||
|
||
### Launch Invoke-FuzzyScoop | ||
|
||
Launches fzf and selects some applications to install. | ||
|
||
``` | ||
Invoke-FuzzyScoop | ||
``` | ||
|
||
### Launch Invoke-FuzzyScoop using `uninstall` subcommand | ||
|
||
Launches fzf for selects some applications to uninstall. | ||
|
||
|
||
``` | ||
Invoke-FuzzyScoop -subcommand uninstall | ||
``` | ||
|
||
## PARAMETERS | ||
### -subcommand | ||
The Scoop command that will be run on the selected applications. | ||
|
||
```yaml | ||
Type: String | ||
Parameter Sets: (All) | ||
Aliases: | ||
|
||
Required: False | ||
Position: 0 | ||
Default value: install | ||
Accept pipeline input: False | ||
Accept wildcard characters: False | ||
``` | ||
### -subcommandflags | ||
A set of flags that will be additionally passed to the Scoop subcommand. | ||
```yaml | ||
Type: String | ||
Parameter Sets: (All) | ||
Aliases: | ||
|
||
Required: False | ||
Position: 0 | ||
Default value: | ||
Accept pipeline input: False | ||
Accept wildcard characters: False | ||
``` | ||
### CommonParameters | ||
This cmdlet does not support common parameters. | ||
## INPUTS | ||
### None | ||
This cmdlet does not accept any input. | ||
## OUTPUTS | ||
### None | ||
This cmdlet does not generate any output. | ||
## NOTES | ||
This function will be effective if [Scoop](https://scoop.sh) can be found in PATH. | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters