uuid(n) uuid uuid(n)
__________________________________________________________________________________________________________________________________________________NAME
uuid - UUID generation and comparison
SYNOPSIS
package require Tcl 8.2
package require uuid ?1.0.1?
::uuid::uuid generate
::uuid::uuid equal id1 id2
_________________________________________________________________DESCRIPTION
This package provides a generator of universally unique identifiers (UUID) also known as globally unique identifiers (GUID). This implemen-
tation follows the draft specification from (1) although this is actually an expired draft document.
COMMANDS
::uuid::uuid generate
Creates a type 4 uuid by MD5 hashing a number of bits of variant data including the time and hostname. Returns the string represen-
tation of the new uuid.
::uuid::uuid equal id1 id2
Compares two uuids and returns true if both arguments are the same uuid.
EXAMPLES
% uuid::uuid generate
b12dc22c-5c36-41d2-57da-e29d0ef5839c
REFERENCES
[1] Paul J. Leach, "UUIDs and GUIDs", February 1998. (http://www.opengroup.org/dce/info/draft-leach-uuids-guids-01.txt)
BUGS, IDEAS, FEEDBACK
This document, and the package it describes, will undoubtedly contain bugs and other problems. Please report such in the category uuid of
the Tcllib SF Trackers [http://sourceforge.net/tracker/?group_id=12883]. Please also report any ideas for enhancements you may have for
either package and/or documentation.
KEYWORDS
GUID, UUID
CATEGORY
Hashes, checksums, and encryption
COPYRIGHT
Copyright (c) 2004, Pat Thoyts <patthoyts@users.sourceforge.net>
uuid 1.0.1 uuid(n)
Check Out this Related Man Page
uuid(n) uuid uuid(n)
__________________________________________________________________________________________________________________________________________________NAME
uuid - UUID generation and comparison
SYNOPSIS
package require Tcl 8.2
package require uuid ?1.0.1?
::uuid::uuid generate
::uuid::uuid equal id1 id2
_________________________________________________________________DESCRIPTION
This package provides a generator of universally unique identifiers (UUID) also known as globally unique identifiers (GUID). This implemen-
tation follows the draft specification from (1) although this is actually an expired draft document.
COMMANDS
::uuid::uuid generate
Creates a type 4 uuid by MD5 hashing a number of bits of variant data including the time and hostname. Returns the string represen-
tation of the new uuid.
::uuid::uuid equal id1 id2
Compares two uuids and returns true if both arguments are the same uuid.
EXAMPLES
% uuid::uuid generate
b12dc22c-5c36-41d2-57da-e29d0ef5839c
REFERENCES
[1] Paul J. Leach, "UUIDs and GUIDs", February 1998. (http://www.opengroup.org/dce/info/draft-leach-uuids-guids-01.txt)
BUGS, IDEAS, FEEDBACK
This document, and the package it describes, will undoubtedly contain bugs and other problems. Please report such in the category uuid of
the Tcllib SF Trackers [http://sourceforge.net/tracker/?group_id=12883]. Please also report any ideas for enhancements you may have for
either package and/or documentation.
KEYWORDS
GUID, UUID
COPYRIGHT
Copyright (c) 2004, Pat Thoyts <patthoyts@users.sourceforge.net>
uuid 1.0.1 uuid(n)
Hello,
I have several handreds of text files. The format of file looks like:
column1 column2 column3 column4 column5
id1 definition1 name1 fieldid comm1
id2 definition2 name2 fieldid ... (4 Replies)
Hello guys,
I have a file in the following format(each line seperated by TAB):
=========
Filename id
Filename id1
Filename id
Filename1 id7
Filename1 id7
Filename2 id1
Filename2 id1
Filename2 id3
Filename3 id2
Filename3 id4
Filename3 id4
Filename3 id6
=========
I would like to... (2 Replies)
I have one flat file like below
id1~col~batch1
id2~col2~batch2
id3~col3~batch3
I need to read the first column one by one and I need to write one db2 query based on that column1
Like
for (i=0;i<=10;i++)
do
insert into table column (con_id) values (select column from table where... (4 Replies)
Hi,
I have a tab delimited file "test.txt" like this:
id1 342 C/T
id2 7453 T/A/-/G/C
id3 531 T/C
id4 756 A/T/G
id5 23 A/G
id6 717 T/A/C
id7 718 C/T/A
And so on, with the possible choices for letters being A,C,T,G.
I would like to exclude from my file all the lines that do not have... (3 Replies)
I have two files as below
A file
/* comment for id1 */
"id1" = "x1"
/* comment for id2 */
"id2" = "x2"
/* comment for id3 */
"id3" = "x3"
B file
/* comment for id1 */
"id1" = "y1"
/* comment for id2 */
"id2" = "x2" (22 Replies)
I want to change the ownership of a directory ONLY.
my id
id1 owns the files under the /mypath/bin
but /mypath/bin is owned by id2
If i log into id2
I can't do
chown id1 /mypath/bin (1 Reply)