Split the multiple files from a folder (filter by wildcard) using Python
Using on Linux os:
Split 1 file to 2 files:
python splitFile -f <file_name> -r <rate_for_split> -o <output_folder>
Example: rate = 0.1 => the line number of the first splitted file = 0.1 * the line number of the original file.
Split the multiple files (from a folder):
python splitFileWildCard -d <folder_name> -w [wildcard] -r <rate_for_split> -o <output_folder>