Index: trunk/ippScripts/scripts/ipp_datapath.pl
===================================================================
--- trunk/ippScripts/scripts/ipp_datapath.pl	(revision 13275)
+++ trunk/ippScripts/scripts/ipp_datapath.pl	(revision 17663)
@@ -3,11 +3,20 @@
 use warnings;
 use strict;
+use Getopt::Long qw( GetOptions :config auto_help auto_version gnu_getopt );
 
 use PS::IPP::Config;
 my $ipprc = PS::IPP::Config->new();
 
+my $touch;
+
+GetOptions(
+    'touch'     => \$touch,
+);
+
 die "No filename specified.\n" if scalar @ARGV != 1;
 
-print $ipprc->file_resolve(shift @ARGV) . "\n";
+my $filename = shift @ARGV;
+
+print $ipprc->file_resolve($filename, $touch) . "\n";
 
 1;
