forked from Imagelibrary/rtems
* cvsignore-add.sh: Script to append a specific file to all .cvsignore files if the files exists is a specific directory.
26 lines
448 B
Bash
Executable File
26 lines
448 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# Find a file in the directory tree and create or add to a .cvsignore
|
|
# file that file name so it is ignored.
|
|
#
|
|
# Copyright 2001 Cybertec Pty Limited
|
|
# All rights reserved.
|
|
#
|
|
# $Id$
|
|
#
|
|
|
|
#
|
|
# We need one parameter, the file to add.
|
|
#
|
|
|
|
if [ $# -eq 0 ]; then
|
|
echo "Usage: $0 file, where file is the one to be added."
|
|
exit 1
|
|
fi
|
|
|
|
for f in `find . -name $1`;
|
|
do
|
|
echo "`dirname $f`/.cvsignore"
|
|
echo "$1" >> `dirname $f`/.cvsignore
|
|
done
|