source: trunk/SOURCE_TOOLS/uniqueID.sh

Last change on this file was 17366, checked in by westram, 6 years ago
  • provide a build specific ID (ARBBID)
    • different in each call to make
    • constant in recursive calls (and submakefiles)
  • 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.