TMOTTM Asked: 2023-04-03 21:45:07 +0800 CST2023-04-03 21:45:07 +0800 CST 2023-04-03 21:45:07 +0800 CST 什么是重定向输入运算符的 Powershell 等价物 772 在 Bash 中,我可以将文件重定向到nc这样的进程: user@host:~$ nc -nv 10.11.0.22 4444 < /some/directory/file.txt Powershell 的等价物是什么? powershell 1 个回答 Voted Best Answer DavidPostill 2023-04-03T21:57:41+08:002023-04-03T21:57:41+08:00 重定向输入运算符的 Powershell 等价物是什么 您不能<在 PowerShell 中使用。而是使用|: Get-Content /some/directory/file.txt | nc -nv 10.11.0.22 4444
重定向输入运算符的 Powershell 等价物是什么
您不能
<
在 PowerShell 中使用。而是使用|
: