getting the location of an alias in powershell code example
Example: powershell get aliases
# to get list of all aliases
Get-Alias
# or use its alias
gal
# to get a specific alias
gal <command-name>
# for example
gal man
# to get list of all aliases
Get-Alias
# or use its alias
gal
# to get a specific alias
gal <command-name>
# for example
gal man