I know that it is possible to call/insert Bash/awk commands/scripts within a Python script, I found something like os.system('''awk '[...]''') and I suppose it works as well just for bash commands. The question is, how is it possible to pass, for instance, a Python list to these commands/this script?
-
1Why do you want to do this? It's usually unnecessary, error-prone and makes your script less portable.daniel kullmann– daniel kullmann2014-02-10 19:14:32 +00:00Commented Feb 10, 2014 at 19:14
Add a comment
|