Hi
I have created/export some module from my MainProgram.pl. The program saved on /data/script directory. Below some sample from my perl module.
The problem is i only can execute the script when i go to /data/script directory only. I cannot execute it from others directory. Why?
Please help me how to execute the script outside from the specific directory ?
#!/usr/bin/perl
use strict;
use warnings;
use Getopt::Long;
use Time::ParseDate qw(parsedate);
use Time::Local;
use POSIX qw(strftime);
use ConfigurationModule qw/set_directory get_date PARSE_CSV INTTOHEX/;
use TrunkCategoryModule qw/read_trunk_category/;
use CheckFilterModule qw/check_filter/;
use CheckProductTypeModule qw/assign_bgid assign_mbi_final/;
use CheckCallCategoryModule qw/assign_call_category/;
use NormalizeFieldModule qw/normalize_bnumber date_format check_error_
+code/;
use NormalizePointTargetModule qw/normalize_point_target/;
use NormalizeInbillModule qw/get_total_record get_startdate get_lastda
+te/;
use TiuMappingModule qw/tiu_mapping/;
...
...
...
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.