Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试在其参数中使用命令从 Windows 运行 MinGW 的 MSYS bash,并且可以通过 -c 开关实现。例如:
C:\MinGW\msys\1.0> bin\bash -c "times" 0m0.000s 0m0.046s 0m0.000s 0m0.000s C:\MinGW\msys\1.0>
使用此命令,bash 将运行、执行 'times' 并退出。
是否可以做同样的事情,但留在 bash 命令行而不是退出它?
尝试:
C:\MinGW\msys\1.0> bin\bash -c "times;/c/MinGW/msys/1.0/bin/bash"