Is there an iPython equivalent to executing the Unix sh
command? I'd like to execute multiple iterations of a program via a shell file that has a set of lines such as:
%run python_file.py data_file1
%run python_file.py data_file2
.
.
.
%run python_file.py data_fileN
The python_file.py has sys module argv calls to allow command line inputs.