Alias names are shortcuts for other commands, and you probably know that. In PowerShell V1, the only way to retrieve all aliases for a given target was this line:
Get-Alias | Where-Object { $_.Definition -eq 'Get-Childitem' }
In PowerShell V2, it is much simpler:
Get-Alias -definition Get-Childitem