7 lines
152 B
PowerShell
7 lines
152 B
PowerShell
|
function Upgrade-All { winget upgrade --all }
|
||
|
|
||
|
Set-Alias -Name Syu -Value Upgrade-All
|
||
|
|
||
|
function touch($file) {
|
||
|
"" | Out-File $file -Encoding ASCII
|
||
|
}
|