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
I have a script that I want daemonize, daemonize_me.sh which calls some other python script. For example:
daemonize_me.sh
#!/bin/bash echo "Before Python" python --version /usr/bin/python --version python somefile.py which python echo "After Python"
daemonize /path/to/daemonize_me.sh Output
daemonize /path/to/daemonize_me.sh
Before Python /usr/bin/python After Python
It looks like running script with daemonize skipping python instructions. Python is present in $PATH as well.
The text was updated successfully, but these errors were encountered:
You need to provide full path of the python script somefile.py.
Sorry, something went wrong.
No branches or pull requests
I have a script that I want daemonize,
daemonize_me.sh
which calls some other python script. For example:daemonize /path/to/daemonize_me.sh
Output
It looks like running script with daemonize skipping python instructions. Python is present in $PATH as well.
The text was updated successfully, but these errors were encountered: