]>
Commit | Line | Data |
---|---|---|
37ab190f | 1 | #!/bin/sh |
da44b91e VZ |
2 | |
3 | ############################################################################### | |
4 | # Name: is_text.sh | |
5 | # Purpose: returns 0 if the file in cvs tree is text, 1 if binary | |
6 | # Version: $Id$ | |
7 | # Author: VZ | |
8 | # Created: 2006-07-19 | |
9 | # Copyright: (c) Vadim Zeitlin 2006 <vadim@wxwindows.org> | |
10 | ############################################################################### | |
11 | ||
37ab190f KO |
12 | if [ $# != 1 ]; then |
13 | echo "Usage: $0 <file>" >&2 | |
14 | exit 2 | |
15 | fi | |
16 | ||
17 | entries=`dirname $1`/CVS/Entries | |
18 | if [ ! -f $entries ]; then | |
19 | echo "CVS entries file \"$entries\" not found." >&2 | |
20 | exit 3 | |
21 | fi | |
22 | ||
da44b91e VZ |
23 | # we look for -kb in the last field, optionally followed by tag name |
24 | re="^/`basename $1`/.*/-kb/\(T[^/]*\)\{0,1\}$" | |
37ab190f KO |
25 | if grep -q "$re" $entries; then |
26 | exit 1 | |
27 | fi | |
28 | ||
708e7305 | 29 | exit 0 |