Hi Roland0 Roland0 wrote: > Strange - continue is a very basic shell builtin command. What exactly > happens? Error messages? > Maybe try replacing the ones in the analyze_file function with return
Thanks for the documentation ;-) About the continue: I received warnings that continue is allowed only in a loop, so the script just skipped that (what makes perfectly sense to me, as it was executing a function) and executed the next step in the function. Changing continue to return (i.e. ending the function) did the job for me. Cheers Jens ------------------------------------------------------------------------ JensD's Profile: http://forums.slimdevices.com/member.php?userid=65310 View this thread: http://forums.slimdevices.com/showthread.php?t=108278 _______________________________________________ plugins mailing list [email protected] http://lists.slimdevices.com/mailman/listinfo/plugins
