# IO_Redirect **Repository Path**: HWZen/io_redirect ## Basic Information - **Project Name**: IO_Redirect - **Description**: 此程序能将任何Windows程序的标准输入(stdin)重定向至一个客户端终端,意在解决在因程序有太多输出,而很难准确输入的烦恼。 - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2022-07-22 - **Last Updated**: 2022-11-27 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # IO_Redirect > Redirect stdin for **ANY** programs in Windows > > 此程序能将任何Windows程序的标准输入(stdin)重定向至一个客户端终端,意在解决在因程序有太多输出,而很难准确输入的烦恼。 ## Require * MSVC with c++11 support * cmake ## Build Run cmd in the ```IO_Redirect``` directory, run following command. ```shell mkdir build && cd build cmake ../ cmake --build . ``` Or you can build it the way you like, it only has one cpp source file. ## Usage Run you program by IO_Redirect ```shell ./IO_Redirect.exe path/to/your/program # Example ./IO_Redirect.exe "D:\juphoon\repo\sdk\lemon\test\console_tester\x64\Debug\console_tester.exe" ``` Your program will be started in a new console, but you can only type command in ```IO_Redirect``` console, and your command will be executed in you program