Hello, I've been using Julia for a month probably and I would now like to execute a bash script containing a set of commands to run the same file for different arguments. The file myFile.jl contains calls to some functions to accomplish a task and this task needs to be rerun for different datasets which are input as csv files. I want to realise something like the following. I need to run the same file for different datasets which are input as csv files. Python provides a -args option but I'm unaware of how to do this in Julia. I'd be very grateful for any assistance. Thank You
julia myFile.jl dataset1.csv julia myFile.jl dataset2.csv julia myFile.jl dataset3.csv julia myFile.jl dataset4.csv : : :
