리눅스에서 자주 이용하는 인풋 리다이렉션을 윈도우환경의 vscode의 터미널에서 이용하고 싶었다.
-> ./a.out 가 컴파일된 실행파일, input.txt 가 입력하고 싶은 인풋파일
In Linux
$ ./a.out < input.txt
In vscode
PS > Get-Content .\input.txt | .\a.exe
설명:
Get-Content는 파일안의 내용을 볼 수 있는 PS(PowerShell) 명령어,
PS에서는 리눅스에서 인풋리다이렉션인 "<" 대신, "|"을 이용해서 한다. ( '|'은 리눅스에서 명령어 파이프할때 사용했던거같은데..)
728x90
반응형
'프로그래밍' 카테고리의 다른 글
[rustc] cargo run 시 error: linking with `x86_64-w64-mingw32-gcc` failed: exit code: 1 (0) | 2021.12.09 |
---|---|
[GIT] 초기에 GIT! 해보기 (0) | 2021.10.14 |
[OpenCV] 컴파일 에러 error while loading shared libraries: libopencv_highgui.... (0) | 2020.02.15 |
과제 2 ResNet.ipynb (1) | 2019.06.22 |
[Linux] vim 수정중에 can't open file for writing (4) | 2019.04.20 |