0

when I want a full compare of two textfiles linewise I have the correct result when I use:

$test = compare-object -referenceobject $srcobject -differenceobject $compareobject -CaseSensitive
$test = $test | where {$_.SideIndicator -eq "=>"} | select 'InputObject'

But afterwards I have serios issues to simply write this stuff to a file.

When i use:

  1. Out-File, it makes a cut off and I don't want many spaces in the end of each line

  2. Export-CSV, it adds me a " to every line at the beginning and the end

  3. Set-Content, it adds me "@{InputObject=" and a } every line

How can I export the data without these limitations?

Regards,

Alex

1 Answer 1

1

Try this -

$test = compare-object -referenceobject $srcobject -differenceobject $compareobject -CaseSensitive
$test = $test | where {$_.SideIndicator -eq "=>"} | *select -ExpandProperty InputObject*
Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.