Kòman ou kapab jwenn èd ak jwenn anpren nan kòmandman nan Windows poechèl?

A command in Powershell can have one or many alias. An alias is the command but in a shorter and mostly abbreviated form. Some aliases are made to match bash commands.

 

Get-ChildItem

Kòmandman sa a bay lis sa ki ekri nan aktyèl anyè a ap travay.
Alyas: ls, dir

 

Get-Alias

Pou jwenn jaden an nan yon lòd nan poechèl itilize nan Get-Alias lòd.

 

Pou egzanp, find all the aliases start with r
get-alias r*

 

A Get-Alias lòd kont li genyen yon alyas gal. The following will do the same thing as above
gal r*

 

Get-Alias tou vin lòd la plen nan yon alyas
gal ls
Outputs: ls -> Get-ChildItem

 

We can also find all the aliases of the specified command with the -Definition parameter. Pou egzanp, let’s find all the aliases of the Get-ChildItem lòd. We use -d which is short for -Definition

gal -d get-childitem

Outputs

dir -> Get-ChildItem
gci -> Get-ChildItem
ls -> Get-ChildItem

 

Get-Command finds the commands by command name. Get-Command has the alias gcm. So we can do this
Jwenn kmdle kòmanse avèk jwenn
gcm -c cmdlet get*

 

pi wo a la se menm bagay la kòm….
Get-Command -CommandType Cmdlet Get*

To get help on any of the aliases or commands, just type help in front of the command. Pou egzanp…

help cp