1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-28 07:21:54 +03:00
samba-mirror/source3/script/installdat.sh
Gerald Carter 03e7b224ec cosmetic fix when DESTDIR=/ (default)
(This used to be commit cf6ac7995a)
2003-10-06 19:24:39 +00:00

24 lines
515 B
Bash
Executable File

#!/bin/sh
#fist version March 2002, Herb Lewis
DATDIR=`echo $1 | sed 's/\/\//\//g'`
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