dotfiles/windows/aliases.ps1

7 lines
152 B
PowerShell
Raw Normal View History

2024-06-10 17:17:01 -05:00
function Upgrade-All { winget upgrade --all }
Set-Alias -Name Syu -Value Upgrade-All
function touch($file) {
"" | Out-File $file -Encoding ASCII
}