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 integrated the butterfly terminal. I have run the butterfly terminal using below command
/usr/local/bin/butterfly.server.py --host=0.0.0.0 --port=8000 --login --unsecure --shell="/etc/cmd.sh"
In browser, I have accessed the below terminal using below URL
http://IP:8000/?token=terminal
In /etc/cmd.sh
I want to get the browser Querstring into one variable.
we have tried to get the value from os.environ
url=$(/usr/bin/python3.6 -c "import os;import butterfly;url = os.environ;print(url)") but environ array also don't have a value.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I have integrated the butterfly terminal. I have run the butterfly terminal using below command
/usr/local/bin/butterfly.server.py --host=0.0.0.0 --port=8000 --login --unsecure --shell="/etc/cmd.sh"
In browser, I have accessed the below terminal using below URL
http://IP:8000/?token=terminal
In /etc/cmd.sh
I want to get the browser Querstring into one variable.
we have tried to get the value from os.environ
url=$(/usr/bin/python3.6 -c "import os;import butterfly;url = os.environ;print(url)") but environ array also don't have a value.
The text was updated successfully, but these errors were encountered: