cat -ReadCount 0 $file
Note that this returns an array instead of a single line. The easiest way around this is to feed the resulting array down the pipeline one line at a time (still faster):
cat -ReadCount 0 $file | %{$_}
More detail here.
Code, computers, and other nonsense. All powered by iguanas, of course.
cat -ReadCount 0 $file
cat -ReadCount 0 $file | %{$_}
No comments:
Post a Comment