#!/bin/bash path_files=/home/cedric24c/Musique/non_stop_music files=($path_files/*) <<<<<<< HEAD volume=0.06 ======= volume=0.02 >>>>>>> 0150ef4 (Initialisation) echo Process number $$ echo Path files : $path_files echo Number of files in the path : ${#files[@]} while [ 1 ];do file=${files["$[RANDOM % ${#files[@]}]"]} echo Now playing $file play -v $volume "$file" &> /dev/null done <<<<<<< HEAD ======= >>>>>>> 0150ef4 (Initialisation)