#!/bin/bash
# generates a unique ID

PID=$$
NSEC=`date +%N`

echo "${NSEC}_${PID}"
