Is there a way to give custom filenames for split command? I am splitting a file that is 100GB into chunks of 128MB. Here is what I am doing
split -b 128000k mydata.csv.
This creates files with following names xaa,xab,xac,.. etc.
I am wondering if it is possible to have custom names like
mydata_0.csv, mydata_1.csv for each of the splits.