While reading, I think I figured this out, I just want to verify with someone first.
#!/usr/bin/perl ### bunch of code require "you_need_me.pl" #### more code &sub_from_you_need_me.pl ### END FILE # This is in the "you_need_me.pl" ## code sub sub_from_you_need_me { #code } By using the "require" statement, that should link/load the you_need_me.pl file into the main program, kind of like an $INCLUDE in C/C++ ? Thank You! Brian -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]