1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-23 17:34:34 +03:00
samba-mirror/source4/script/installdat.sh
2008-10-23 16:58:11 +02:00

24 lines
491 B
Bash
Executable File

#!/bin/sh
#fist version March 2002, Herb Lewis
DATDIR=$1
SRCDIR=$2/
echo Installing dat files in $DATDIR
for f in $SRCDIR/../codepages/*.dat; do
FNAME=$DATDIR/`basename $f`
echo $FNAME
cp $f $FNAME || echo Cannot install $FNAME. Does $USER have privileges?
chmod 0644 $FNAME
done
cat << EOF
======================================================================
The dat files have been installed.
======================================================================
EOF
exit 0