This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
#set -x | |
# $1 - file containing points to search within | |
# $2 - interval of points for time diff message | |
# $3 - print time_diff messages? | |
pg_neighbours() | |
{ | |
filename="$RANDOM-$RANDOM" | |
start_time=`date +%s.%N` | |
i=0 |