How do I make a variable unique in TCL?
Example:
exec echo $msgBody - /tmp/Alert_Notify_Work.$$
exec cat /home/hci/Alert.txt -- /tmp/Alert_Notify_Work.$$
This does not work; I am trying to make the variable Alert_Notify_Work unique.
|
How do I make a variable unique in TCL? Example:
This does not work; I am trying to make the variable |
||||
|
|
|
It's best to use a pre-existing library for this. Tcllib has a fileutil package that implements tempfiles:
|
|||
|
|
|
I assume option 1
or, Tcl only with just a few more lines:
|
|||||
|