Un novato PowerShell pregunta:Equivalente a Bash alias en PowerShell
Me gustaría hacer un alias en PowerShell exactamente equivalente a este Bash alias:
alias django-admin-jy="jython /path/to/jython-dev/dist/bin/django-admin.py"
En juguetear con él hasta ahora, He descubierto que esto es muy difícil.
alias-PowerShell sólo funcionan con comandos de PowerShell + llamadas a funciones
-No clara manera de permitir un número ilimitado de argumentos en una llamada a la función PowerShell
-PowerShell parece bloquear la salida estándar
vale la pena señalar que he intentado la solución planteada aquí: http://huddledmasses.org/powershell-power-user-tips-bash-style-alias-command/
Y he ir tten el siguiente error relacionado con la sintaxis de la carga hasta PowerShell:
The term 'which' is not recognized as the name of a cmdlet, function, script file, or operable program. Check the spell
ing of the name, or if a path was included, verify that the path is correct and try again.
At C:\Users\Dan\Documents\WindowsPowerShell\Microsoft.PowerShell_profile.ps1:9 char:27
+ $cmd = @(which <<<< $_.Content)[0]
+ CategoryInfo : ObjectNotFound: (which:String) [], CommandNotFoundException
+ FullyQualifiedErrorId : CommandNotFoundException
¡Ojalá pudiera darte más de un 1 por hacer esta pregunta! Muchas gracias. –