#!/bin/bash
if [ "$1" == "--help" ] ; then
	cat <<EOF
Set BFS width parameter. Use to tune how resistant the BFS algorithm should
be to holes in the walls vs. how many seed point you need.
EOF
	exit
fi
netcat -w 1 localhost 1234 >/dev/null <<EOF
bfs -1 -1 -1 16
EOF
