#!/usr/bin/env bash

## iterate through each file whose name ends in 'jpg'
## saving it as $file. ~ is your $HOME directory
for file in /www/s2.musulmanin.com/quran-rus/quran/ajmy/*
do
    ## basename will remove the path (~/Desktop/My_pictures) and also
    ## remove the extension you give as a second argument    
    name="$(basename "$file")"

    ## create the directory, the -p means it will create 
    ## the parent directories if needed and it won't complain
    ## if the directory exists.
    cd /www/s2.musulmanin.com/quran-rus/quran/ajmy/"$name"

    ## copy the file to the new directory
     cat /www/s2.musulmanin.com/quran-rus/quran/ajmy/"$name"/*.mp3 > /www/s2.musulmanin.com/quran-rus/quran/ajmy/"$name".mp3
   ## lame -a -b 128 "$name".mp3 /root/quran/"$name"/"$name".mp3
done
