Sponsored Content
Top Forums Shell Programming and Scripting Q: grab email username from script Post 302799309 by KlintJ on Friday 26th of April 2013 08:45:42 AM
Old 04-26-2013
These are the commands i tried thus far...all i get are a list of all the accounts auch as "apache service user" "sas administrator account" "control-m agent user" "ftp user" "and a whole lot of generic account names
Code:
echo "$(nawk -F: -v user=$(logname) '$1 == user {print $5}' /etc/passwd)"
echo $(grep "$username" /etc/passwd| awk -F: '{print $5}' )
echo $(grep "$username" /etc/passwd| nawk -F: '{print $5}' )

The command you gave returns the same things though in a line to account name. No actual user names are in this list more just account user types
*
Thanks for the assistance though.

Last edited by Franklin52; 04-26-2013 at 09:47 AM.. Reason: Code tags
 

3 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

script to grab lines between two values

hi guys say I have a file that contains hello world this is AAAAA message to try BBBBBB and see if anyone AAAAA knows the (3 Replies)
Discussion started by: JamesByars
3 Replies

2. Shell Programming and Scripting

grab PID of a process and kill it in a script

#!/bin/sh who echo "\r" echo Enter the terminal ID of the user in use: echo "\r" read TERM_ID echo "\r" ps -t $TERM_ID | grep sh echo "\r" echo Enter the process number to end: echo "\r" read PID echo "\r" kill -9 $PID What this code does is ultimately grab the PID of a users sh... (6 Replies)
Discussion started by: psytropic
6 Replies

3. Shell Programming and Scripting

grab shell script error

How do I capture an error for any command I use. For e.g if i try to zip a file and the file is not there. The regualr $? -gt 0 only tells its un-successful but won't tell me that the file is not there when I run through a script. How can I capture this error? for e.g.. zip $x.zip $x... (1 Reply)
Discussion started by: dsravan
1 Replies
All times are GMT -4. The time now is 06:14 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy