Email ids from gecos

 
Thread Tools Search this Thread
Homework and Emergencies Emergency UNIX and Linux Support Email ids from gecos
# 8  
Old 04-14-2014
As I have shown you, I could see the output from the code...
Still I suggest, please show us the entire output as is of "lsuser <username>", we shall try to help

---------- Post updated at 02:57 PM ---------- Previous update was at 02:54 PM ----------

Try this and confirm
Code:
lsuser <username> | awk '/gecos=/ {print $NF}' FS=';'

or
Code:
lsuser <username> | awk '/^[ \t]*gecos=/ {print $NF}' FS=';'

# 9  
Old 04-14-2014
What you call "gecos" field usually is the "user name or comment field", field 5 in the : separated /etc/passwd file. Try
Code:
awk -F: '{sub(/^.*;/,"",$5);print $5}' /etc/passwd

# 10  
Old 04-25-2014
From the command "lsuser" and the general output format i deduce it is an AIX system (still, it would be nice to state that instead of letting the audience exert its collective criminalistic skills). The output of "lsuser" is a space-separated list of user properties in the form "property=value".

It is possible to limit the output to one (or several) specific properties, therefore:

Code:
lsuser -a gecos <username>

will limit the output to only the gecos property (and the username, which is always part of the output). From there it should be easy to extract everything up to the delimiting semicolon by shell expansion:

Code:
var="$(lsuser -a gecos <username>)"
print - ${var#*;}

I hope this helps.

bakunin
# 11  
Old 04-28-2014
Code:
cat /etc/passwd | awk -F: '($1=="'$1'"){print $5}' | awk -F\; '{print $3}'


Last edited by Corona688; 04-28-2014 at 03:35 PM..
# 12  
Old 04-28-2014
That is a useless use of cat. Also, if you're doing awk | awk | awk, you might as well put it all in one awk.

Also, never use creative quoting to get variables into awk, that's unsafe and there's no need.

Code:
awk -F: '($1==U){sub(/.*;/, "", $5); print $5 }' U="$1" /etc/passwd

# 13  
Old 05-03-2014
try this
Code:
lsuser -a gecos <username> | cut -d ';' -f3

# 14  
Old 05-04-2014
Quote:
Originally Posted by RudiC
What you call "gecos" field usually is the "user name or comment field"
gecos, not "user name or comment field" is the correct name for this field. Entries in this field should be separated by commas and such entries can be changed by a user using the chfn(1) utility.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Email IDs added to .mailrc aliases not receiving mails

hi, I added an email id to a list of existing aliases in .mailrc on my unix box, using vi editor. However, the new id has not been receiving any mails from the box. Kindly help as to what needs to be done here. Does the box need to be rebooted for these changes to reflect? Is there any other... (5 Replies)
Discussion started by: qwerty000
5 Replies

2. Shell Programming and Scripting

How to send mails based on email ids residing in table?

Hello Gurus, I have one table which consists of two field:- PROG_NAME EMAIL xxxx email1,email2,email3 yyyy email4,email1,email2 I want to to send mails by using mailx command. But how do I get each and every mail ids from table against... (4 Replies)
Discussion started by: pokhraj_d
4 Replies

3. Shell Programming and Scripting

Masking email ids / phone no's in file along with obscene words

Hi, I would like to know if there is a way to mask obscene words and other contents like email id's/phone numbers in the file. Below is the sample input /output. Sample data : cat smp.txt The service is really bad . My email abc@gmail.com You can contact me at 4078909831 Output... (2 Replies)
Discussion started by: ashwin3086
2 Replies

4. Shell Programming and Scripting

Shell Script for generating NTIDs(Usernames) from the email ids which exists in MSAD Directory

Hi Everyone, I just need a shell script which automatically gives the list of NT IDs mean the Usernames from the list of email ids. We have around 140 users from AMERICAS,ASIAPACIFIC and EMEA User Directories and we have their email ids.For ex. i have email id called naveen-kumar.dasu@hp.com... (7 Replies)
Discussion started by: naveen.dasu
7 Replies

5. Emergency UNIX and Linux Support

Script for deleting orphan ids & unknown gecos

The AIX servers that I am working on have been identified as having orphaned user ids & improper gecos for some user ids. Can someone help me with a script to delete the user ids if the orphaned ids are provided in a text file. The home directory set up for the user ids happen to be the... (1 Reply)
Discussion started by: ggayathri
1 Replies

6. UNIX for Dummies Questions & Answers

Email ids trucated in Mailx function

I wanted to send email to list of people using mailx in unix. I am getting the emailds from a oracle table and getting the ids in a variable. Shell script is shown below: ----------------------------------------------------------------------- filename=testdata921 export filename... (5 Replies)
Discussion started by: sasi02
5 Replies

7. Shell Programming and Scripting

Send Email to group ids

hi, I want to send mail to DL... i am sending email to single id using mailx .. how to send to group of ids? :confused: i am using a file which conatins all the ids, is there any other way to send mail without creating the DLfile? DL=path\file.txt mailx -s "Info BG is now... (4 Replies)
Discussion started by: sreelu
4 Replies

8. HP-UX

Sending email to multiple IDs

Hi, I am trying to send an email to multiple IDs from Unix script. I have given the EmailIds in a file and trying to use the file as input in the script. > cat Email EmailID = "abc@xyz.com cbz@xyz.com" In my script I have . /Email mailx -s "subj" $EmailID This fails with the... (3 Replies)
Discussion started by: sangharsh
3 Replies

9. UNIX for Dummies Questions & Answers

Sending mails to various users without hard coding the email IDS

Hi Can any one help me out ? I am trying to send an autogenerated mail with an attachment to bulk of users using 'MAILX' and 'UNENCODE' . I have used it as follows X " ( cat /sastemp/body.txt; uuencode Test.xls.gz Test.xls.gz ) | mailx -s 'Testing' ' abcd@yahoo.com , efgh@gmail.com ' " ... (9 Replies)
Discussion started by: manas6
9 Replies

10. Forum Support Area for Unregistered Users & Account Problems

Please list email ids or contact info of members

Hi , Is it possible to list the user's email id for further communication. Thanks, MoonwalaPL (3 Replies)
Discussion started by: moonwalapl
3 Replies
Login or Register to Ask a Question