This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
yap-6.3/Logtalk/misc/cplgtdirs.sh
pmoura dcf184d930 Logtalk 2.17.0 files.
git-svn-id: https://yap.svn.sf.net/svnroot/yap/trunk@1048 b08c6af1-5177-4d33-ba66-4b1c6b8b522a
2004-04-25 23:57:46 +00:00

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