Tuesday, January 09, 2024

PowerShell Quick Tip: Get alias for a cmdlet

PowerShell Quick Tip: Get alias for a cmdlet

Below shows how to get the aliases for Remove-Item cmdlet.
PS C:\prj> Get-Alias -Definition Remove-Item
CommandType     Name                   Version    Source
-----------     ----                   -------    ------
Alias           del -> Remove-Item
Alias           erase -> Remove-Item
Alias           rd -> Remove-Item
Alias           ri -> Remove-Item
Alias           rm -> Remove-Item
Alias           rmdir -> Remove-Item

No comments:

Configuring TUN/TAP virtual network interface for use with QEMU on Xubuntu 24.04

Configuring TUN/TAP virtual network interface for use with QEMU on Xubuntu 24.04 I am planning to run qemu-system-ppc to play around QEMU ...