Free web development scripts for the webmasterDevelopment Scripts

 Site Navigation
 o Development Scripts
 o Text Only Edition
 o PHP.net News
 o Tutorials
 o Register an account
 o New entries this week
 o Affiliates/Links
 o Contact Us
 o About us
 o Advanced Search

 Browse Path
 o 3 users online
 o Most users online: 67
 o Home
  o Shell
   o Miscellaneous
    o Script

 Member Login
User Name
Password

 Standards
Valid XHTML 1.0!
Valid 
CSS!

 Recommended Links
 o PHP Freaks
 o Designer Baby Clothes
 o Advertise Here Make Money
 o OxyScripts
 o Open Source Design
 o Free Wedding Websites
 o devnet
 o Wedding Vendor Directory
 o designplace

Random Sound File (Rated 0)

Description:

Pick a sound file at random and play it. Obviously, this could be modified for other files

Code starts here


#!/bin/sh
#random-sound.sh: play a random file from the sounds directory
cd $HOME/sounds
filename=$(find -type f |
awk 'BEGIN{
srand()
}
{
names[NR]=$0
}
END{
i=1+int(rand()*NR)
print names[i]
}
')
echo "$filename"
wavplay "$filename"


Submitted by Devscripts on 27-02-2003 20:37


Rate This Script

User Contributed Comments

Registered Members login
© Copyright 2003 - Devscripts.net