Skip to content

Instantly share code, notes, and snippets.

@chrisbrownie
Created January 18, 2018 02:51
Show Gist options
  • Save chrisbrownie/7f70091c09add6fa2a1a69b7f555c40c to your computer and use it in GitHub Desktop.
Save chrisbrownie/7f70091c09add6fa2a1a69b7f555c40c to your computer and use it in GitHub Desktop.
function cl {
Param(
$Location
)
try {
Set-Location $Location -ErrorAction Stop
Get-ChildItem
} catch {
throw $_
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment