rpike has asked for the wisdom of the Perl Monks concerning the following question:
What I'm trying to accomplish is to have one script that "use" a particular module file and have the entire mdoule imported into that main script. I also want to have another script that "uses" the same module but excludes a particular subroutine from that module. A module with the same name will be coming from another "use" statement within this second main script (not found in the first). How can I accomplish this?
Comment on Excluding subroutines from calling script
Generally you don't want to export anything.
If you do want to export, read Simple Module Tutorial and Exporter documentation, as well as use/no, and import documentation.