Sponsored Content
Contact Us Post Here to Contact Site Administrators and Moderators VIP Membership - The UNIX and Linux Forums - Get Your UNIX.COM Email Address Here Post 303029801 by Neo on Friday 1st of February 2019 02:25:33 AM
Old 02-01-2019
Update:

Please visit Patreon and become a Blue Badge sponsor if you wish to have VIP member benefits and to help us create the next generation user experience at unix.com.

Or, if you wish to make a more modest contribution (or a larger one) we offer a number of Patreon sponsorship tiers.
 

4 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Send email where # is in the email address - Using Unix

Hi All, How do I send an email using malix where email address contains a #. I have a email address like this : #test@test.com I want to send email like malix -s "TEST" #test@test.com < SOMEFILE I tried \# but doesn't work. Please let me know how we can achieve this? I am in... (1 Reply)
Discussion started by: jingi1234
1 Replies

2. UNIX for Dummies Questions & Answers

How to register an email address in unix

Hi, Could anyone please let me know, process to send an email from unix server ( SunOS 5.9). Also, explain the requirements should have. Specify the location to register an email (abc@xyz.com) in unix? Please help!! Thanks!! (0 Replies)
Discussion started by: praveenvi
0 Replies

3. Post Here to Contact Site Administrators and Moderators

VIP membership email error

Variable for password request did not resolve properly. (1 Reply)
Discussion started by: DeepakS
1 Replies

4. What is on Your Mind?

YouTube: Forum Moderation @UNIX.com | The UNIX and Linux Forums

Forum Moderation @UNIX.com | The UNIX and Linux Forums https://youtu.be/WGwgibE4Rq0 Also note: In the video I mentioned removing legacy menu items in the ModCP which are unused. I have already "CSS'ed out" the unused menu items: ... (0 Replies)
Discussion started by: Neo
0 Replies
GETUID(2)						     Linux Programmer's Manual							 GETUID(2)

NAME
getuid, geteuid - get user identity SYNOPSIS
#include <unistd.h> #include <sys/types.h> uid_t getuid(void); uid_t geteuid(void); DESCRIPTION
getuid() returns the real user ID of the calling process. geteuid() returns the effective user ID of the calling process. ERRORS
These functions are always successful. CONFORMING TO
POSIX.1-2001, POSIX.1-2008, 4.3BSD. NOTES
History In UNIX V6 the getuid() call returned (euid << 8) + uid. UNIX V7 introduced separate calls getuid() and geteuid(). The original Linux getuid() and geteuid() system calls supported only 16-bit user IDs. Subsequently, Linux 2.4 added getuid32() and geteuid32(), supporting 32-bit IDs. The glibc getuid() and geteuid() wrapper functions transparently deal with the variations across ker- nel versions. SEE ALSO
getresuid(2), setreuid(2), setuid(2), credentials(7) COLOPHON
This page is part of release 4.15 of the Linux man-pages project. A description of the project, information about reporting bugs, and the latest version of this page, can be found at https://www.kernel.org/doc/man-pages/. Linux 2017-09-15 GETUID(2)
All times are GMT -4. The time now is 01:45 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy