#!/bin/bash
source_dir="/home/sara/sfx/raw_audio_sfx_v0"
dest_dir="/app2/suno/data/sfx_audio/raw_audio_sfx_v0"

echo "Moving files with $(nproc) parallel processes..."

find "$source_dir" -maxdepth 1 -type f -print0 | \
    xargs -0 -P $(nproc) -I {} mv {} "$dest_dir/"

echo "All files moved successfully!"