start cmd or shell from current directory in windows file explorer

start windows cmd in current directory

My preferance of starting cmd in a certain certain directory is

  1. simply navigating to the directroy;
  2. pressing ctrl + L to focus the address bar;
  3. typing cmd + enter.
    By this way, a new console window will start and its current directory is previously focused.
    image

start git bash from current directory

  1. adding the directory where git-bash.exe lcoated, D:\Program Files\Git for example, to Path.
  2. simply navigating to the directroy;
  3. pressing ctrl + L to focus the address bar;
  4. typing cmd + enter.
    By this way, a new console window will start and its current directory is previously focused.
    image

start msys2 from current directory

following the same step to start msys2 will start msys2, but the working directory will not be the expected one. To dealing with this, I followed the answer in How can I run msys2 console on cmd current directory? - Stack Overflow, modifying the msys2.ini to be like

#MSYS=winsymlinks:nativestrict
#MSYS=error_start:mingw64/bin/qtcreator.exe|-debug|<process-id>
#CHERE_INVOKING=1
#MSYS2_PATH_TYPE=inherit
MSYSTEM=MSYS

#How can I run msys2 console on cmd current directory? - Stack Overflow
#https://stackoverflow.com/questions/46249316/how-can-i-run-msys2-console-on-cmd-current-directory
#GitHub - msys2/msys2-launcher: Helper for launching MSYS2 shells
#https://github.com/msys2/msys2-launcher
CHERE_INVOKING=1

image

reference

How can I run msys2 console on cmd current directory? - Stack Overflow
https://stackoverflow.com/questions/46249316/how-can-i-run-msys2-console-on-cmd-current-directory

GitHub - msys2/msys2-launcher: Helper for launching MSYS2 shells
https://github.com/msys2/msys2-launcher

posted on 2024-01-27 20:02  yusisc  阅读(2)  评论(0编辑  收藏  举报

导航