Converting python to shell script [closed]

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.

1

1 Answer

There are 2 ways to solve your problem:

  1. Convert the python script to bash step-by-step (I doubt there is an automated process to do that).
  2. Use PyInstaller to create a binary executable for Linux.
1

You Might Also Like