#!/bin/bash # # ========================================================================= # Copyright 2003 Josh Glover # # LICENCE: # # This file is distributed under the terms of the BSD License (version # 2). See the COPYING file, which should have been distributed with this # file, for details. If you did not receive the COPYING file, see: # # http://www.jmglov.net/opensource/licenses/bsd.txt # # cvs-status # # DESCRIPTION: # # Filters a 'cvs status' command for files that are not up to date. # # USAGE: # # cvs-status {} {} # # EXAMPLES: # # cvs-status foo bar foobar # # DEPENDENCIES: # # Bash # CVS # grep # # MODIFICATIONS: # # Josh Glover (2003/10/27): Added -R in order to # include files (and directories) that exist in the repository but not # locally # Josh Glover (2003/10/05): Initial CVS revision # ========================================================================= cvs status -R $@ | grep 'Status: [^U]'