Files
linux-workspace/conf/Microsoft.PowerShell_profile.ps1
Martin Blazik b534cf3895 PowerShell conf
2020-09-10 20:13:25 +02:00

10 lines
169 B
PowerShell

# PowerShell profile script
Set-Alias ps Get-Process
Set-Alias kill Stop-Process
function uptime() {
((Get-Date) - (gcim Win32_OperatingSystem).LastBootUpTime)
}