#!/usr/bin/perl
+# given a perforce change number, output the equivalent git commit id
+
die "usage: $0 [git-log-options] num" unless @ARGV;
my $num = 1;
#!/usr/bin/perl
+# output a list of:
+# a) files listed in MANIFEST which don't exist
+# b) files which exist but which aren't in MANIFEST
+
use strict;
use warnings;
use File::Find;