Last active
January 5, 2022 20:08
-
-
Save shinayser/e2dd13e00df4dd0e88cc226db127f0b3 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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