Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

uuid_unparse_lower(3) [osx man page]

UUID_UNPARSE(3) 					     Library Functions Manual						   UUID_UNPARSE(3)

NAME
uuid_unparse - convert an UUID from binary representation to a string SYNOPSIS
#include <uuid/uuid.h> void uuid_unparse(uuid_t uu, char * out); void uuid_unparse_lower(uuid_t uu, char * out); void uuid_unparse_upper(uuid_t uu, char * out); DESCRIPTION
The uuid_unparse function converts the supplied UUID uu from the binary representation into a 36-byte string (plus tailing '') of the form 1b4e28ba-2fa1-11d2-883f-b9a761bde3fb and stores this value in the character string pointed to by out. The case of the hex digits returned by uuid_unparse may be upper or lower case, and is dependent on the system-dependent local default. If the case of the hex digits is important then the functions uuid_unparse_upper and uuid_unparse_lower may be used. CONFORMING TO
OSF DCE 1.1 AUTHOR
Theodore Y. Ts'o AVAILABILITY
http://e2fsprogs.sourceforge.net/ <http://e2fsprogs.sourceforge.net/> SEE ALSO
uuid(3), uuid_clear(3), uuid_compare(3), uuid_copy(3), uuid_generate(3), uuid_is_null(3), uuid_parse(3) 1.36 April 2004 UUID_UNPARSE(3)

Check Out this Related Man Page

UUID_UNPARSE(3) 						    Libuuid API 						   UUID_UNPARSE(3)

NAME
uuid_unparse - convert an UUID from binary representation to a string SYNOPSIS
#include <uuid/uuid.h> void uuid_unparse(uuid_t uu, char *out); void uuid_unparse_upper(uuid_t uu, char *out); void uuid_unparse_lower(uuid_t uu, char *out); DESCRIPTION
The uuid_unparse function converts the supplied UUID uu from the binary representation into a 36-byte string (plus tailing '') of the form 1b4e28ba-2fa1-11d2-883f-0016d3cca427 and stores this value in the character string pointed to by out. The case of the hex digits returned by uuid_unparse may be upper or lower case, and is dependent on the system-dependent local default. If the case of the hex digits is important then the functions uuid_unparse_upper and uuid_unparse_lower may be used. CONFORMING TO
OSF DCE 1.1 AUTHOR
Theodore Y. Ts'o AVAILABILITY
libuuid is part of the util-linux package since version 2.15.1 and is available from ftp://ftp.kernel.org/pub/linux/utils/util-linux/. SEE ALSO
uuid(3), uuid_clear(3), uuid_compare(3), uuid_copy(3), uuid_generate(3), uuid_time(3), uuid_is_null(3), uuid_parse(3) util-linux May 2009 UUID_UNPARSE(3)
Man Page

5 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

to check if a string has only digits

Hi guys, I am not very experienced in writing ksh scripts and I am trying to write a piece of code that indicates if a given string contains only digits and no alphabet (upper or lower case). If i write it my way it would turn out to have a lot of comparisons.. :eek: Thanks a lot in... (3 Replies)
Discussion started by: lakshmikanth
3 Replies

2. Shell Programming and Scripting

Get the places of binary digits in the korn shell script

TO THE ALMIGHTY FORUM , though i have already posted the same question on hex to binary thread , i am posting here also for other beginners who may benefit from this thread... I have a 32 bit binary containing a series of 1' and 0's , and i am stuck... (2 Replies)
Discussion started by: venu
2 Replies

3. Shell Programming and Scripting

convert hex to binary and send to variable

Folks, can anyone help with a script to convert hex to binary digits, and break the 32 bit binary into packs of 4 and send them to 8 different variables.Any help is sincerely appreciated. Thanks venu Its in korn shell...... (24 Replies)
Discussion started by: venu
24 Replies

4. Shell Programming and Scripting

Substitution to remove tailing slash?

Heyas I am trying to remove a tailing space, with substitution. Already tried some multiple escapes with no luck, is that even possible? echo $CHROOT || \ CHROOT="${CHROOT/\/$}" echo $CHROOT return And all i get is: :) paths $ CHROOT=/usr/local/ + paths $ . * /usr/local/ /usr/local/... (2 Replies)
Discussion started by: sea
2 Replies

5. Programming

DB2 convert digits to binary format

Dear Team We use DB2 v10.5 and using DBArtisan tool Can someone please guide how to convert digits to binary numbers using db2 feature. Ex> for number 9 , binary should be 1001 ( 8+1) Any help appreciated. Thanks (2 Replies)
Discussion started by: Perlbaby
2 Replies