1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-07-24 20:55:24 +02:00
tldr/pages.zh/windows/scoop.md
2024-01-01 10:38:53 +01:00

32 lines
481 B
Markdown

# scoop
> Windows 的命令行安装程序。
> 更多信息:<https://scoop.sh>.
- 安装一个包:
`scoop install {{包名}}`
- 删除一个包:
`scoop uninstall {{包名}}`
- 更新所有已安装的包:
`scoop update --all`
- 列出所有已安装的包:
`scoop list`
- 显示一个包的信息:
`scoop info {{包名}}`
- 搜索一个包:
`scoop search {{包名}}`
- 移除所有包的旧版本并清理下载缓存:
`scoop cleanup --cache --all`