Skip to content

Instantly share code, notes, and snippets.

@bielawb
Created February 9, 2017 20:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bielawb/4f113be8dec4d523f83d0e3597a9510f to your computer and use it in GitHub Desktop.
Save bielawb/4f113be8dec4d523f83d0e3597a9510f to your computer and use it in GitHub Desktop.
Dolar-daszek dolar-dolar kod nr 4
echo "$($PSVersionTable.PSVersion.Major) testuję zmienną $ $"
# wynik: 5 testuję zmienną $ $
"$$"
# wynik: $($PSVersionTable.PSVersion.Major) testuję zmienną $ $
# Aby uzyskać identyczny wynik musielibyśmy zamiast tego użyć:
$ExecutionContext.InvokeCommand.ExpandString($$)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment