#!/bin/bash batch_size=256 for i in $(seq 1 20); do source_file="mixed_redstone_part_${i}_streaming_4096.jsonl" echo "Processing file: $source_file" python preprocess_longtext_streaming_step2.py --source_file "$source_file" --batch_size "$batch_size" done