Python to shell script transcompiler
Project description
Sherlock.py is transpiler that translate python to shell script language.
Motivation
Shell script is well known script language which is used in most of unix-like OS. Shell script lanuage garuntee to run in most unix-like OS. So many software developers are using this language when they program install script or configuration script. Because this language is really old, There are several problems. and it is hard to maintain program which is writted by Shell script language.
Install
$ pip install sherlock.py
Sherlock.py supports python version over 2.6 or 3.3. and support linux and macOS. If there is error in install please write issue.
Usage
usage: sherlock [-h] [-o output] [-c] [-v] [--version] [file | command] Python to bash trans-compiler. positional arguments: [file | command] program read from script file optional arguments: -h, --help show this help message and exit -o output output file path -c, --command program passed in as string -v, --verbose program run in verbose mode --version show program's version number and exit
Following is basic usage.
$ sherlock target.py
Using this command, target.py file is translated into shell sciprt. after, it is automatically run with sh. We can find out bug from the running result.
$ sherlock target.py -o output.sh
Using -o flag, you can save sherlock result in file. In this case script isn’t run automatically.
$ sherlock -c "echo 'Hello World.'"
Using -c flag, input command is immediately translated to shell script language and executed.
If you want to details. Please check sample codes
Todo
import syntax
command package
documentation
support windows batch and powershell script
more test…
License
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.