在 Bash 中,我可以将文件重定向到nc
这样的进程:
user@host:~$ nc -nv 10.11.0.22 4444 < /some/directory/file.txt
与此对应的 Powershell 是什么?
答案1
Powershell 中与重定向输入运算符等效的是什么
您不能<
在 PowerShell 中使用。请改用|
:
Get-Content /some/directory/file.txt | nc -nv 10.11.0.22 4444
在 Bash 中,我可以将文件重定向到nc
这样的进程:
user@host:~$ nc -nv 10.11.0.22 4444 < /some/directory/file.txt
与此对应的 Powershell 是什么?
您不能<
在 PowerShell 中使用。请改用|
:
Get-Content /some/directory/file.txt | nc -nv 10.11.0.22 4444