blob: ec34819bfea784c332284280ad830444d56af7c4 (
plain)
1
2
3
4
5
6
7
|
#!/usr/bin/env sh
cd "`dirname $0`"
. ./checkDataFolder.sh
. ./checkConfFile.sh
port=$(grep ^port= "$YACY_DATA_PATH/SETTINGS/yacy.conf" |cut -d= -f2)
./search1.sh -y localhost:$port "$1"
|