주석 (command comment)
1 | node --version :: 노드JS버전확인 | cs |
화면지우기 (screen clear)
1 | cls | cs |
출력 (output)
1 | echo "test" | cs |
폴더경로이동 - 절대경로이동 (access directory)
1 | cd / :: 가장 상위 루트로 이동 | cs |
1 | cd /Users/louisryu :: C:\Users\louisryu 디렉토리로 이동 | cs |
드라이브이동 (access another drive D)
1 | \d :: D드라이브로 이동 | cs |
폴더만들기 (mkdir)
1 | md "새로만들폴더경로" | cs |
폴더 지우기 (rm -rf)
1 | rmdir /s /q "지울폴더경로" | cs |
디렉토리이동과 동시에 nodejs코드 test.js 실행 (multiple command, AND operator)
1 | cd C:\User\louisryu & node test.js | cs |
References
https://wonsx.tistory.com/18
https://stackoverflow.com/questions/97875/rm-rf-equivalent-for-windows
http://daplus.net/batch-file-%EB%B0%B0%EC%B9%98-cmd%EC%97%90%EC%84%9C-%EC%BD%94%EB%A9%98%ED%8A%B8-%EC%95%84%EC%9B%83%EC%A3%BC%EC%84%9D-%EC%B6%94%EA%B0%80-%EB%B0%A9%EB%B2%95/