windos 和 linux 重定向输入、输出


Windos 重定向输入

echo.exe < word.txt

linux 重定向输入

./echo.out < word.txt

==========================

Windos 重定向输出

echo.exe > tem.txt

linux 重定向输出

./echo.out > tem.txt

二者有些许不同。