]> git.donarmstrong.com Git - lib.git/commitdiff
changed default path to lib for pick_a_quote.pl
authorDon Armstrong <don@donarmstrong.com>
Mon, 3 Oct 2005 02:08:01 +0000 (02:08 +0000)
committerDon Armstrong <don@donarmstrong.com>
Mon, 3 Oct 2005 02:08:01 +0000 (02:08 +0000)
signature_stuff/pick_a_quote.pl

index 1f1ab09ff17248cf817bef3cf53dd81e3a14696c..a2de7091fbd97283b582a21154ff6a34b48a18b7 100755 (executable)
@@ -5,9 +5,15 @@ use strict;
 
 use IO::File;
 
-my $sigfile      = new IO::File "> /home/don/.signature";
-my $templatefile = new IO::File "/home/don/signature_stuff/sigtemplate.txt";
-my $quotesfile   = new IO::File "/home/don/signature_stuff/quote.txt";
+use User;
+
+my ($temp_file,$quote_file) = @ARGV;
+$temp_file  ||= User->Home."/lib/signature_stuff/sigtemplate.txt";
+$quote_file ||= User->Home."/lib/signature_stuff/quote.txt";
+
+my $sigfile      = new IO::File User->Home."/.signature", 'w' or die "Unable to open ~/.signature for writing; $!";
+my $templatefile = new IO::File $temp_file, 'r' or die "Unable to open $temp_file $!";
+my $quotesfile   = new IO::File $quote_file,'r' or die "Unable to open $quote_file $!";
 
 my $template = '';