#!/bin/sh
# @(#)SepPref	2.1 10/7/93
# Copyright (c) 1993 Alias Research.  All rights reserved.
# This is unpublished proprietary source code of Alias.
# The copyright notice above does not evidence any
# actual or intended publication of such source code.

TOKEN="^SeparationFile"
ENABLED_TOK="^UseSeparationFile"

str=`/usr/bin/egrep $TOKEN ${HOME}/.EclipsePrefs`

if [ "$str" ]
then
    str=`echo $str | cut -d= -f2`
    enabled=`/usr/bin/egrep $ENABLED_TOK ${HOME}/.EclipsePrefs`
    enabled=`echo $enabled | cut -d= -f2`
    case "$enabled" in
        Y) echo -sep $str ;;
        *) ;;
    esac
fi
exit 0
