File indexing completed on 2025-05-04 05:16:30
0001 #!/bin/sh 0002 # cvslastlog - prints log of last commit for a file 0003 # Depends on the version of the local file, not the one on the server 0004 # Requires cvsversion 0005 # David Faure, faure@kde.org 0006 0007 cvs log -N -r`cvsversion "$1"` "$1" 0008