我正在尝试.sh
使用 NPPExec 从 Notepad++ 中重建如何在我的 Windows 机器上执行 bash shell 文件。(我以前成功地做到过,但是我的硬盘崩溃了,我不记得我以前是怎么做到的。)
当它之前工作时,我会运行调用.sh
文件的 NPPExec 脚本,它会向我显示在 Notepad++ 中处理 .sh 文件的控制台输出,就好像它在 cygwin 中处理一样。
这是我试图开始工作的示例 .sh 文件:
message="Testing"
echo $message
该文件位于 C: 的根目录中。
失败的尝试:
以下三种方法均无效:
- 执行:
C:\nppexec.sh
回复:
CreateProcess() failed with error code 193:
%1 is not a valid Win32 application.
- 执行:
npp_exec C:\nppexec.sh
回复:
message="Testing"
CreateProcess() failed with error code 2:
The system cannot find the file specified.
$message
在运行 npp_exec 时,将 .sh 文件作为第一行添加
#! /bin/bash
会导致额外的错误:NPP_EXEC: C:\nppexec.sh #! /bin/bash CreateProcess() failed with error code 2: The system cannot find the file specified.