Look for .csv in source dir even if exe is symlinked

This commit is contained in:
Conny Brunnkvist 2014-07-04 23:58:46 +07:00
parent 7851596ba7
commit b1c290b614

View file

@ -9,9 +9,15 @@ TAGS=
SCASE='-i'
VERBOSE=0
# if files.csv is in the searchsploit path, use that
if [ -f "$( dirname $0 )/files.csv" ]; then
csvpath="$( dirname $0 )/files.csv"
# if files.csv is in the searchsploit source path, use that
scriptsrc=$0
while [ -h $scriptsrc ]; do
scriptsrc=$(readlink $scriptsrc)
[[ $scriptsrc != /* ]] && scriptsrc="$( cd -P $( dirname $scriptsrc ) && pwd )/$scriptsrc"
done
progdir="$( cd -P "$( dirname "$scriptsrc" )" && pwd )"
if [ -f "$progdir/files.csv" ]; then
csvpath="$progdir/files.csv"
fi
# usage info