dcf184d930
git-svn-id: https://yap.svn.sf.net/svnroot/yap/trunk@1048 b08c6af1-5177-4d33-ba66-4b1c6b8b522a
21 lines
515 B
Bash
Executable File
21 lines
515 B
Bash
Executable File
#!/bin/sh
|
|
|
|
echo
|
|
echo "This script copies the Logtalk library, xml, and examples"
|
|
echo "directories to the user home directory (~/logtalk)."
|
|
echo
|
|
|
|
if ! [ $LOGTALKHOME ]
|
|
then
|
|
echo "The env variable LOGTALKHOME must be defined first!"
|
|
else
|
|
mkdir -p $HOME/logtalk/examples
|
|
mkdir -p $HOME/logtalk/library
|
|
mkdir -p $HOME/logtalk/xml
|
|
cp -RL $LOGTALKHOME/examples $HOME/logtalk/
|
|
cp -RL $LOGTALKHOME/library $HOME/logtalk/
|
|
cp -RL $LOGTALKHOME/xml $HOME/logtalk/
|
|
echo "Finished copying Logtalk directories."
|
|
echo
|
|
fi
|