Skip to content

Instantly share code, notes, and snippets.

@phnthnhnm
Last active March 4, 2025 04:05
Show Gist options
  • Save phnthnhnm/1237aa51cbea5089ee4777ff3b3d8bbd to your computer and use it in GitHub Desktop.
Save phnthnhnm/1237aa51cbea5089ee4777ff3b3d8bbd to your computer and use it in GitHub Desktop.
My scoop aliases for frequently-used operations
scoop alias add i 'scoop install $args' '(alias) Install apps'
scoop alias add rm 'foreach ($_ in $args) {scoop uninstall --purge $_}' '(alias) Uninstall apps'
scoop alias add ls 'scoop list' '(alias) List installed apps'
scoop alias add u 'scoop update | scoop update --independent --all' '(alias) Update all apps'
scoop alias add s 'scoop search $args' '(alias) Search an app in all buckets'
scoop alias add clean 'scoop cache remove * | scoop cleanup --all --cache' "(alias) Remove cache and old versions of all apps"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment