source: branches/alilink/SOURCE_TOOLS/uniqueID.sh

Last change on this file was 18126, checked in by westram, 5 years ago
  • Property svn:executable set to *
File size: 83 bytes
Line 
1#!/bin/bash
2# generates a unique ID
3
4PID=$$
5NSEC=`date +%N`
6
7echo "${NSEC}_${PID}"
Note: See TracBrowser for help on using the repository browser.