Displaying 1 result from an estimated 1 matches for "process_command_lin".
Did you mean:
process_command_line
2012 Sep 11
2
R equivalent of python module structure and functionality?
...) so that the file/module is both
1. callable from the OS commandline via, e.g.,
$ /path/to/cmdline.py
2. importable without mere import causing execution of the script's
functionality, e.g.,
>>> sys.path.append('/path/to')
>>> from cmdline import *
>>> process_command_line(...)
How to do this in R?
TIA, Tom Roche <Tom_Roche at pobox.com>