#!/bin/bash
for i in $1 
do
  if [ -d $i ]; then
    cp discotheque_mp3.php $i/discotheque.php
    cp download.php $i/download.php
  fi
done
