실행 파일(.exe)의 위치를 찾을 때 유용하게 사용하는 명령어이다.
ex) python.exe를 찾고 싶은 상황
// 기본 커맨드 입력 경로
C:\Users\Username>
// 커맨드 입력
C:\Users\Username>where python
//결과
C:\Users\Username\AppData\Local\Programs\Python\Python311\python.exe
//이동
C:\Users\Jungho>cd AppData\Local\Programs\Python\Python311
// 변경된 기본 커맨드 입력 경로
C:\Users\Jungho\AppData\Local\Programs\Python\Python311>
// python.exe 확인 (dir 커맨드)
C:\Users\Jungho\AppData\Local\Programs\Python\Python311> dir
// 결과
파일 목록 중 python.exe 가 존재하는 것을 확인
주의: `where`명령어는 현재 폴더 혹은 PATH 환경 변수에 등록된 경로에서 파일을 찾음. 즉, 둘 중에 하나의 경로에 파일이 존재해야함.
'Memo > 짧은 메모' 카테고리의 다른 글
Collections 시간 복잡도 (0) | 2023.04.06 |
---|---|
[Github] .md 파일에 이미지 및 동영상 넣기 (0) | 2023.01.18 |
[Git] .idea 디렉토리 & .iml 파일 (0) | 2022.12.18 |
[Git] git init 시, default branch name 지정 (0) | 2022.12.18 |
[Spring] Spring Rest Docs (0) | 2022.11.29 |