I need print on Powershell a line comand through a variable , I called $em_result, for example, em_result=20, Thanks.
$em_result = ´gc C:\Users\mtmachadost\Desktop\Test\logError.txt | ?{$_ -match 'cajica11'} | %{($_ -split "\s+")[3]} | Measure -Sum | Select -Exp Sum'´
Write-Host"$em_result"
While I am not sure of the motivation for what you are trying to accomplish it sounds like you are trying to save the command
$em_result
so that you can run when you want. So that way, you are not saving the point in time result but rather every time you call it the result will be from that time.Like Tony Hinkle answered you need to save the command as a string. However there is more to escape than just the quotes. The pipeline variable
$_
would also come into play. As it stands a simple here-string would make it so you don't have to worry about escaping anything.Now you could call this string and get the results
I guess you were trying to use the backtick pair like and escape quote pair which made me think this is what you wanted. Backtick will only escape the one following character.
Invoke-Expression
will execute the string we pass it as code.