Difference between revisions of "Reading a file"

From MyWiki
Jump to: navigation, search
(Created page with " $lines=Get-Content myfile.txt $lines | ForEach-Object{ Test-Connection $_.Split(' ')[1] }")
(No difference)

Revision as of 15:34, 16 June 2014

$lines=Get-Content myfile.txt
   $lines |
    ForEach-Object{
        Test-Connection  $_.Split(' ')[1]
    }