1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-23 17:34:34 +03:00
samba-mirror/source4/script/installpc.sh
2007-10-10 13:47:25 -05:00

17 lines
155 B
Bash
Executable File

#!/bin/sh
# install miscellaneous files
SRCDIR="$1"
PKGCONFIGDIR="$2"
shift
shift
cd $SRCDIR || exit 1
for I in $*
do
cp $I $PKGCONFIGDIR
done
exit 0