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

21 lines
515 B
Bash
Raw Normal View History

#!/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