标签: windows bash makefile regedit
我想在鼠标右键上创建一个上下文菜单,该菜单将在cygwin bash中执行命令。 遗憾的是,没有任何效果。
这些是我针对此问题的解决方案,这些解决方案根本不起作用:
D:\cygwin\bin\bash.exe -c "file=%~nx1" 'make file'
D:\cygwin\bin\bash.exe -c 'make "%~nx1"'
D:\cygwin\bin\bash.exe -c make "%1"
我在做什么错?还是有可能吗?