commandwrapper 0.7

commandwrapper is a Python module to wrap a shell command into a Python threaded object.Usage:You want to launch the following bash commands in a thread:[user@localhost ~]$ ls -l | grep pdf | wc -l5here is how you can do it:>>> Ls = WrapCommand( 'ls...