Skip to content
Snippets Groups Projects
Commit 5eb3efc5 authored by ram's avatar ram
Browse files

Changed to repeatedly exec rlog instead of just calling once, as it seems to

lose big if you give it too many files.  Also, added a -time option which is
passed through to find to reduce the number of times rlog is called.
parent f459711b
No related branches found
No related tags found
No related merge requests found
......@@ -2,6 +2,7 @@
set from = ""
set to = ""
set mtime = ()
set dirs = ()
while ($#argv > 0)
......@@ -17,6 +18,10 @@ while ($#argv > 0)
set to = $argv[2]
shift
breaksw
case "-mtime":
set mtime = ($argv[1-2])
shift
breaksw
default:
echo "Bogus switch: $argv[1]"
exit
......@@ -27,8 +32,7 @@ end
if ($#dirs == 0) set dirs = .
find $dirs -follow -name '*,v' -print | \
rlog - "-d$from<$to" | \
find $dirs -follow -name '*,v' $mtime -exec rlog "-d$from<$to" '{}' \; | \
sed -n -e '/^RCS file:/p' -e '/^------/,/^======/p' | \
sed -e '/^RCS file:/{;:again\
N;s/^RCS file.*\nRCS file/RCS file/;t again\
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment