Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

uuid_unparse(3) [linux 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)

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.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 https://www.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

6 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Hi again guys

actually i have important question about unix / linux i'm working on visuall basic and visuall c++ i heared from someone that i can't open them while i useing unix / linux is that right? if yes .......... what's the solution if no ............. thanks :) :D :D thanks my friends (1 Reply)
Discussion started by: M_Hafez
1 Replies

2. Linux

tsm client (basic question)

Hello, i was trying to install tsm client on a linux box(i386) I get asked for a lot of dependent filesets. I dont have the cd? how can i get these?? is there a way to copy these from a server which has it? and how do i check if a server has it? rpm -qa|grep fileset?? pls advice # rpm -ivh... (4 Replies)
Discussion started by: karthikosu
4 Replies

3. UNIX for Dummies Questions & Answers

Tru64 - how can you determine the package where a file or binary belongs to?

Dear linux-unix users, I hope that one of you will be able to help me. How can I determine to which package a file or binary belongs to. With solaris/linux package managers you can easely determine this but i cant find the way how to do this on tru64. Any help would greatly be appreciated.... (0 Replies)
Discussion started by: Crazy_lenny
0 Replies

4. Linux

How to replace the 2nd character in a string using sed?

Hi, i have string var1=NN. Based on conditions, i have to change this first N to Y or second N to Y and send the details to other process. How to do that? This is a linux machine. Thanks, Selva (1 Reply)
Discussion started by: bharathappriyan
1 Replies

5. UNIX for Dummies Questions & Answers

Xcrysden:Cannot execute binary file

Grettings, Hi and thanks for taking a look at this. I'm going to attempt to explain this the best I possible can but due to my limited knowledge of linux this may prove difficult. I have attempted to install xcrysden on cygwin following the instruction on xcrysden webpage (I attempted to link the... (2 Replies)
Discussion started by: Zbay
2 Replies

6. 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