Skip to content

Instantly share code, notes, and snippets.

@thehappycheese
Created October 23, 2023 10:21
Show Gist options
  • Save thehappycheese/f21a293660fd82e37d34239604558d03 to your computer and use it in GitHub Desktop.
Save thehappycheese/f21a293660fd82e37d34239604558d03 to your computer and use it in GitHub Desktop.
Shorten powershell prompt for tutorials
function prompt {
$currentPath = (Get-Location).Path
$driveLetter = $currentPath.Substring(0,1)
$folderName = Split-Path $currentPath -Leaf
"$driveLetter:/.../$folderName> "
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment