Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

shell script? 1

Status
Not open for further replies.

Giblets

Programmer
Feb 19, 2003
6
GB
Hello,

Can anyone help me to understand what this shell script does?

#!/bin/sh

file=`find . -name \*.uuencode - print`

for f in $files
do

uudecode $f

done



Thanks...


 
The script won't work (as posted) because the for loop is using $files instead of $file

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top