Syntax: scotty.py ifile [perline] [ofile] [nobuiltin] This script converts an input file "ifile" into a bash script that can be executed to recreate the file original file. The output script does not maintain internal state and can be pasted into or executed by the host as individual lines. It relies solely on bash's built in functionality and does not depend on any external binaries. Line length can be adjusted via the "perline" parameter. Special: if perline is set to -1, the script will output lines as short as possible. (18 characters minimum, depending on path) (This removes the "builtin" command protection, sets perline to 1 and shrinks your output filename but preserves the path) The output file and path can be specified via the "ofile" parameter. The "nobuiltin" parameter, if specified, will remove the "builtin" prefix, which will allow the shell to use /bin/printf.