forked from MythTV/myththemes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cpsvndir
66 lines (55 loc) · 1.48 KB
/
cpsvndir
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
#!/bin/sh
#
# cpsvndir: recursive directory copy excluding .svn sub dirs.
if [ -z "$1" -o -z "$2" ]; then
echo "Usage: $0 source-dir destination-dir"
exit -1
fi
# Some shells don't set EUID
if [ -z "$EUID" ]; then
if [ -x /usr/bin/id ]; then EUID=`id -u` ;fi
if [ -z "$EUID" ]; then EUID=$USER ;fi
if [ -z "$EUID" ]; then EUID=0 ;fi # Will fail if not root
fi
# Do similarly for EGID
if [ -z "$EGID" ]; then
if [ -x /usr/bin/id ]; then EGID=`id -g` ;fi
if [ -z "$EGID" ]; then EGID=0 ;fi # Will fail if not root
fi
BASE=$(basename "$1")
case "$BASE" in
.|..|/) BASE="" ;;
*) BASE="/$BASE" ;;
esac
SRC="$1"
case "$2" in
/*) DEST="$2$BASE" ;;
*) DEST="$(pwd)/$2$BASE" ;;
esac
#echo "BASE=$BASE SRC=$SRC DEST=$DEST"
IFS='
'
if [ ! -z ${MYTHPYTHON} ]; then
if [ ! -f ${MYTHPYTHON} ]; then
MYTHPYTHON="/usr/bin/env ${MYTHPYTHON}"
fi
fi
# Copy all files and directories except .svn
cd "$SRC"
for file in $(find . -name .svn -prune -or -print); do
#echo "processing $file"
if [ -d "$file" -a ! -L "$file" ]; then
mkdir -p "$DEST/$file"
else
cp -pR "$file" "$DEST/$file"
ext=${file##*.}
if [ "x$ext" = "xpy" ]; then
sed "1s%^#.*%#!${MYTHPYTHON}%" "$file" > "$DEST/$file"
# elif [ "x$ext" = "xpl" ]; then
# do some perly stuff
fi
chown -h $EUID:$EGID "$DEST/$file"
chmod +r "$DEST/$file" &> /dev/null
fi
done
exit 0