We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
While a long time running task be dispatched with a flag such as #async on windows, shell2http return immediately.
#async
set chrome="C:\Progra~2\Google\Chrome\Application\chrome.exe" D:\bin\shell2http\shell2http -host=127.0.0.1 -port=8081 -no-index -log=access.log -form ^ /html2pdf#async "echo OK && %chrome% --headless --disable-gpu --print-to-pdf-no-header --print-to-pdf=%%v_file%% %%v_url%%"
The text was updated successfully, but these errors were encountered:
I think, it's a duplicate of #70
Sorry, something went wrong.
Thanks for your works, msoap.
There is no command like nohup on windows. Requests will be blocked like this:
nohup
shell2http -port=8081 /longrun "start /b ping -n 5 127.0.0.1 >> D:\x.log" shell2http -port=8081 /longrun "cmd /c ping -n 5 127.0.0.1 >> D:\x.log"
shell2http -port=8081 /longrun "start /b ping -n 5 127.0.0.1 >> D:\x.log"
shell2http -port=8081 /longrun "cmd /c ping -n 5 127.0.0.1 >> D:\x.log"
No branches or pull requests
While a long time running task be dispatched with a flag such as
#async
on windows, shell2http return immediately.The text was updated successfully, but these errors were encountered: