diff --git a/pages/windows/scoop.md b/pages/windows/scoop.md new file mode 100644 index 000000000..c0c923688 --- /dev/null +++ b/pages/windows/scoop.md @@ -0,0 +1,35 @@ +# scoop + +> A command-line installer for Windows. + +- Install a package: + +`scoop install {{package}}` + +- Remove a package: + +`scoop uninstall {{package}}` + +- Update all installed packages: + +`scoop update *` + +- List installed packages: + +`scoop list` + +- Display information about a package: + +`scoop info {{package}}` + +- Search for a package: + +`scoop search {{package}}` + +- List all known buckets (a bucket is an application repository): + +`scoop bucket known` + +- Add a bucket by its alias or a Git repository URL: + +`scoop bucket add {{bucket}}`