I was wandering if there is a way to translate python to shell script, because I have a .py script and I wanted to translate it to a shell script.
11 Answer
There are 2 ways to solve your problem:
- Convert the python script to bash step-by-step (I doubt there is an automated process to do that).
- Use PyInstaller to create a binary executable for Linux.