Changeset 17663 for trunk/ippScripts/scripts/ipp_datapath.pl
- Timestamp:
- May 13, 2008, 3:51:22 PM (18 years ago)
- File:
-
- 1 edited
-
trunk/ippScripts/scripts/ipp_datapath.pl (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ippScripts/scripts/ipp_datapath.pl
r13275 r17663 3 3 use warnings; 4 4 use strict; 5 use Getopt::Long qw( GetOptions :config auto_help auto_version gnu_getopt ); 5 6 6 7 use PS::IPP::Config; 7 8 my $ipprc = PS::IPP::Config->new(); 8 9 10 my $touch; 11 12 GetOptions( 13 'touch' => \$touch, 14 ); 15 9 16 die "No filename specified.\n" if scalar @ARGV != 1; 10 17 11 print $ipprc->file_resolve(shift @ARGV) . "\n"; 18 my $filename = shift @ARGV; 19 20 print $ipprc->file_resolve($filename, $touch) . "\n"; 12 21 13 22 1;
Note:
See TracChangeset
for help on using the changeset viewer.
