Changeset c83befc
- Timestamp:
- 06/01/15 07:11:16 (9 years ago)
- Branches:
- master
- Children:
- 192a260
- Parents:
- d270799
- git-author:
- Hal Finkel <hfinkel@…> (06/01/15 07:11:16)
- git-committer:
- Hal Finkel <hfinkel@…> (06/01/15 07:11:16)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
memlog_analyze
rd270799 rc83befc 2 2 use strict; 3 3 use File::Basename; 4 use File::Path qw(make_path); 4 5 use Getopt::Long; 5 6 … … 36 37 } 37 38 38 if (scalar(@ARGV) > 1) {39 if (scalar(@ARGV) > 2) { 39 40 print_usage(2); 40 41 } … … 42 43 my $memlog_fn = $ARGV[0]; 43 44 my $out_dir = $ARGV[1] || '.'; 45 46 make_path($out_dir); 44 47 45 48 if (! -f $memlog_fn) {
Note: See TracChangeset
for help on using the changeset viewer.