12 lines
274 B
PowerShell
12 lines
274 B
PowerShell
# PowerShell profile script
|
|
|
|
Set-Alias ps Get-Process
|
|
Set-Alias kill Stop-Process
|
|
|
|
# ex: ps *mosh* | Add-Runtime | ft Name,StartTime,Status
|
|
|
|
filter Add-Runtime {
|
|
$_ | Add-Member -PassThru -NotePropertyName Status -NotePropertyValue (New-TimeSpan -Start $_.StartTime)
|
|
}
|
|
|