如何编写更改目录并列出所有文件和文件夹的PowerShell别名?

时间:2018-04-22 01:42:34

标签: powershell

我正在尝试编写像cs *directory*这样的命令来更改目录并立即列出所有项目。我如何使用PowerShell执行此操作?

1 个答案:

答案 0 :(得分:2)

使用功能。例如:

function cs {
  [CmdletBinding()]
  param(
    [Parameter(Mandatory=$true)]
      [String] $path
  )
  Set-Location -LiteralPath $path -ErrorAction Stop
  Get-ChildItem
}