Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm trying to reconstruct how to execute a bash shell .sh file on my Windows machine from within Notepad++ using NPPExec. (I've done this successfully before, but my HDD crashed and I don't recall how I did it previously.)

When it was working before, I would run the NPPExec script that called a .sh file, and it showed me the console output of the .sh file processing in Notepad++ as if it were processing in cygwin.

This is the example .sh file that I'm trying to get to work:

message="Testing"
echo $message

This file is located in the root of C:.

Failed Attempts:

None of the following three methods work:

  • Execute: C:\nppexec.sh

Response:

CreateProcess() failed with error code 193:
%1 is not a valid Win32 application.
  • Execute: npp_exec C:\nppexec.sh

Response:

message="Testing"
CreateProcess() failed with error code 2:
The system cannot find the file specified.    
$message
  • Adding #! /bin/bash to the .sh file as the first line just causes an additional error when npp_exec is run:

    NPP_EXEC: C:\nppexec.sh
    #! /bin/bash
    CreateProcess() failed with error code 2:
    The system cannot find the file specified.
    
share|improve this question

2 Answers

I have the same error while trying to execute a batch file on windows.

I resolved the problem by executing at first command cmd in console of notepad++, then E:\test.bat

I also have a mksnt installed on my window pc.

by starting at first the bash in console of notepad++, the test shell work well now

bash
C:\nppexec.sh
share|improve this answer

The solution was to call bash directly:

C:\cygwin\bin\bash --login -c "command.sh"
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.