cmd 터미널 창에서 브라우저 실행하기; Launching a website via windows/mac commandline 1. windows 1. > explorer "https://google.com" 2. 크롬으로 실행 > start chrome https://www.google.com/ 3. 파이어폭스로 실행 > start firefox https://www.google.com/ 4. > start /max http://google.com 2. mac open "https://google.com" 인생꿀팁 2020.08.27
Javascript. Windows 터미널 창에서 nodejs를 실행할 때 화면을 clear하는 방법 터미널 창에서 다음 코드를 실행한다. process.stdout.write("\u001b[2J\u001b[0;0H"); 더 쉬운 방법을 발견했다. 위의 구문을 실행하면 true가 출력되면서 화면이 cleaer된다. Development/Javascript 2020.08.10