Which of the following Powershell commands will do the same thing as the Linux command shown below?
$ cat /Users/pt/Documents/*whois*
1) PS C: > ls -r c: users pt documents *whois* | % {echo $_.fullname}
2) PS C: > echo *whois* > c: users pt documents
3) PS C: > echo "c: users pt documents *whois* | Get-Command %
4) PS C: > ls -r c: users pt documents *whois* | % {gc $_.fullname}