I have two folders one called text_file and binary_file insides of those folders are multiple files numbered 1,2,3.. I have python program that I wrote and I want to use shell script which runs the python script with numbered files once at a time
Here is an example,
python pythonic_script 1_txt_file.txt 1_bin_file.bi
python pythonic_script 2_txt_file.txt 2_bin_file.bi
Instead of doing this, I want to write a shell script which runs the python program with all numbered files separately.
Best