1. 程式人生 > WINDOWS開發 >windos 和 linux 重定向輸入、輸出

windos 和 linux 重定向輸入、輸出

Windos 重定向輸入

echo.exe < word.txt

linux 重定向輸入

./echo.out < word.txt

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

Windos 重定向輸出

echo.exe > tem.txt

linux 重定向輸出

./echo.out > tem.txt

二者有些許不同。