#!/bin/bash
if [ "$1" == "--help" ] ; then
	cat <<EOF
Set BFS pockets parameter. How many pixels a "pocket" may contain.
EOF
	exit
fi
netcat -w 1 localhost 1234 >/dev/null <<EOF
bfs -1 -1 -1 -1 1000
EOF
