Skip to content

Instantly share code, notes, and snippets.

@shinayser
Last active January 5, 2022 20:08
Show Gist options
  • Save shinayser/e2dd13e00df4dd0e88cc226db127f0b3 to your computer and use it in GitHub Desktop.
Save shinayser/e2dd13e00df4dd0e88cc226db127f0b3 to your computer and use it in GitHub Desktop.
# Looking for a object in path
Get-Command flutter
# Extracting a property from it
Get-Command flutter | Select-Object -ExpandProperty source
# Advanced String Interpolation (with expressions)
Get-ChildItem | ForEach-Object { Write-Output "The lenght: $($_.Length)" }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment