본문 바로가기

Tools/Eclipse

cgwin terminal 실행하기

Cygwin이 설치되어있다면, 이클립스 터미널에서 다음과 같은 명령어를 이용해서 Cygwin 터미널을 실행할 수 있다.

"C:\Cygwin64" 폴더에 cygwin을 설치했다면, eclipse -> terminal에서 'local' 항목을 선택해서 연결을 하고, 

다음과 같이 입력하면 cygwin이 실행된다.

c:\cygwin64\bin\sh.exe --login -i

자세한건 아래를 참고!!


[출처] : http://stackoverflow.com/questions/1562600/is-there-an-eclipse-plugin-to-run-system-shell-in-the-console

You start off with a Windows command prompt. enter image description here

If you like git bash, you can get git bash going inside it like this: Eclipse with TCF Terminals 1.2 and running Git BashThe trick is the command:

D:\Apps\Git\bin\sh.exe --login -i

Change this command path to wherever you installed git. The arguments --login -i are key.