Add update alias

This commit is contained in:
Isaac Shoebottom 2024-12-18 01:42:46 -04:00
parent 87879c7e0f
commit 7e85d5e6a5

View File

@ -61,3 +61,8 @@ if (Test-Path alias:rb) {
Remove-Alias -Name rb
}
Set-Alias -Name rb -Value recycle-bin
# Add shorthand alias for scoop update and cleanup
Function update {
sudo scoop update * && sudo scoop cleanup * && scoop cache rm *
}