I have a csv file which looks like below
Name
Jonh
Jimmy
Sunny
Dany
So to get compare the list of names in CSV file with another name i used the below command
$csv = $csv | where {$_.Name -ceq "Jimmy"}
I am getting output as below
Name
------
Jimmy
can I have just just have the output as
Jimmy
Instead of
Name
-------
Jimmy
EDIT: Formatting