diff options
author | einhverfr <einhverfr@4979c152-3d1c-0410-bac9-87ea11338e46> | 2007-03-16 23:51:02 +0000 |
---|---|---|
committer | einhverfr <einhverfr@4979c152-3d1c-0410-bac9-87ea11338e46> | 2007-03-16 23:51:02 +0000 |
commit | 62fe75d32f53b37cd90aa1135582bcc56d4aa8a7 (patch) | |
tree | ec4df17a4e9c06bfaec841d6d50cf5bf4e3f8d10 | |
parent | 9ad01f93f8294191ce07a903445caf323cd2b191 (diff) |
upgrade.pl now works to upgrade templates
git-svn-id: https://ledger-smb.svn.sourceforge.net/svnroot/ledger-smb/branches/1.2@917 4979c152-3d1c-0410-bac9-87ea11338e46
-rw-r--r-- | upgrade.pl | 21 |
1 files changed, 20 insertions, 1 deletions
@@ -1,3 +1,22 @@ #!/usr/bin/perl -`perl -ibak -pe 's|<\%(\.)\%>|<?lsmb $1 ?>|g' templates/*` +my $dirpath = $ARGV[1]; +$dirpath ||= 'templates'; + +&process_dir($dirpath); + +sub process_dir { + my $dirpath = shift @_; + opendir DIR, $dirpath || die "can't open dir $dirpath for reading:$!"; + my @entries = readdir DIR; + closedir DIR; + for $entry(@entries){ + my $path = "$dirpath/$entry"; + if (-d $path && $entry !~ /^\./){ + &process_dir($path); + } elsif ($entry !~ /^\./){ + print "Processing path $path\n"; + `perl -ibak -pe 's|\<\%(.*)\%\>|<?lsmb \$1 ?>|g' $path` + } + } +} |