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
When event is detected it is convinient to run some script, like automatic uploader. Here is example I use in my local build of freeture.
// ***************************** starting user script ***************************** if(boost::filesystem::exists(mdtp.DET_EVENT_USER_ACTION) ){ string commandString = mdtp.DET_EVENT_USER_ACTION + " " + mEventPath; BOOST_LOG_SEV(logger,notification) << "Executing user command : " << commandString; std::thread ut(this,commandString{ system(commandString.c_str()); }); ut.detach(); }
The text was updated successfully, but these errors were encountered:
Hi, this was a Christmas wish... :) Thanks for your code, I will try to test it ASAP... but please, be patient :)
Sorry, something went wrong.
See #24
Hi @MatthieuGarnung can you push for merging this PR #24 ??
No branches or pull requests
When event is detected it is convinient to run some script, like automatic uploader.
Here is example I use in my local build of freeture.
The text was updated successfully, but these errors were encountered: