我正在尝试编写像cs *directory*
这样的命令来更改目录并立即列出所有项目。我如何使用PowerShell执行此操作?
答案 0 :(得分:2)
使用功能。例如:
function cs {
[CmdletBinding()]
param(
[Parameter(Mandatory=$true)]
[String] $path
)
Set-Location -LiteralPath $path -ErrorAction Stop
Get-ChildItem
}