scoop.md
· 235 B · Markdown
Orginalformat
update all app
```powershell
scoop list | foreach { scoop update $_.Name }
```
update outdated app
```powershell
scoop update
scoop status | foreach { scoop update $_.Name }
```
remove outdated version
```powershell
scoop cleanup *
```
update all app
scoop list | foreach { scoop update $_.Name }
update outdated app
scoop update
scoop status | foreach { scoop update $_.Name }
remove outdated version
scoop cleanup *