printf "log files = \n"; print @log_paths; printf "\n";
Your printf format strings do not have any conversion specifications and therefore you don't really need printf and should probably just be using print instead:
print "log files = \n", @log_paths, "\n";
In reply to Re: calling problem in script
by jwkrahn
in thread calling problem in script
by namishtiwari
| For: | Use: | ||
| & | & | ||
| < | < | ||
| > | > | ||
| [ | [ | ||
| ] | ] |