blob: cb18aea2016f68790de4601030d2bf4dc6a24183 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#!/bin/sh
#
# $FML: list_up_whats_new.sh,v 1.2 2001/08/19 16:11:28 fukachan Exp $
#
date=$1
cd ../../ || exit 1
cvs diff -ub -D $date 2>&1 |\
perl -nle 's/no revision.*in file\s+(\S+)/print $1/e;\
s/Index:\s+(\S+)/print $1/e;'
exit 0;
|