List system users and..


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers List system users and..
# 8  
Old 04-24-2012
You would need to customize, here users ( I defined the rules... users=8charmax and std) so:
Code:
 last|cut -c 1-9|sort|uniq

would give you users that do connect to the box...
Your job is then to see what they have in their $HOME...
# 9  
Old 04-24-2012
#!/bin/bash
Code:
cat /etc/passwd | cut -d: -f1

this is what i have done so far... Smilie

Moderator's Comments:
Mod Comment Please use next time
code tags for your code and data

Last edited by vbe; 04-24-2012 at 10:21 AM..
# 10  
Old 04-24-2012
What about :
Code:
grep home /etc/passwd| cut -d: -f1

Did you try my command line using last?
# 11  
Old 04-24-2012
thanks but still i need a for cycle which will tell if the home directory of user is empty or not
# 12  
Old 04-24-2012
Lets expand your script a bit and get the likely fields available on a per-username basis inside a loop. It's not a "for loop" because we would not use "for" with an open-ended list.

Code:
cat /etc/passwd|cut -d: -f1,3,6| tr ':' ' ' | while read username uid userhome
do
        echo "Username: ${username}"
        echo "UID: ${uid}"
        echo "Home: ${userhome}"
done

I think you will need the UID field from /etc/passwd. I don't know much about your system but non-user accounts usually have a UID less than 100 (or have a negative UID).

I would never expect a user home directory to be totally empty because there should be the profile files there. Can you think about it and maybe find an example on your system.
 
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

List the Manager of Users in AD - Using list- Get-ADuser

Is there any command that can used in Linux that export usernames and their manager's name from AD using bash shell script? I know this can be done using powershell but I need to use Linux for this procedure. (2 Replies)
Discussion started by: dellanicholson
2 Replies

2. UNIX for Dummies Questions & Answers

Users logged into the system

So I'm trying to write a single line command So I have to use last first in this command and I've figured out the format my professor wants it in, something like thislast | cut -d' ' -f1,15 | sort > check | uniq -c.... and I never can get it right, when I just last command I get something... (2 Replies)
Discussion started by: DoubleAlpha
2 Replies

3. Homework & Coursework Questions

Find out the System users

Use and complete the template provided. The entire template must be completed. If you don't, your post may be deleted! 1. The problem statement, all variables and given/known data: I want to create a file called Allusers that contains the list of currently logged on users and the total number... (2 Replies)
Discussion started by: ahm2008
2 Replies

4. Emergency UNIX and Linux Support

List of users on an AIX system

Is there a way to generate a list of users with name, user ID, and Security Group? It is urgent for audit purposes. Please help. (5 Replies)
Discussion started by: ggayathri
5 Replies

5. UNIX for Advanced & Expert Users

Best practices with AIX system users?

All, Preliminaries: AIX 5.2 Tivoli Maestro 6.1 (9.2) I am auditing an older AIX system. As it stands, I can login remotely to the system using the Maestro application's user account. This is BAD. The administrator claims that he cannot disable the remote login, because it will... (1 Reply)
Discussion started by: Thatto
1 Replies

6. Shell Programming and Scripting

Bash Help: users who are not logged into the system to display

A Newbie here, I am working on a script and am having problems with the else part of the script. I can't get the users who are not logged into the system to display on the screen with their username and the text "The user is not logged in". I am sure it is something simple and stupid, but I... (5 Replies)
Discussion started by: rchirico
5 Replies

7. Shell Programming and Scripting

How can i use system users in perl for login page

Hi, I want to code a script with perl. For this, I need some knowledge. How can i use system user name(with group) and password in my login page? I will be happy if you can help me (2 Replies)
Discussion started by: tahsinaltay
2 Replies

8. AIX

Default system users

Hello I have a question I have this users on my aix 5.3 box. This are a default users. lp:*:11:11::/var/spool/lp:/bin/false invscout:*:6:12::/var/adm/invscout:/usr/bin/ksh snapp:*:200:13:snapp login user:/usr/sbin/snapp:/usr/sbin/snappd ipsec:*:201:1::/etc/ipsec:/usr/bin/ksh... (2 Replies)
Discussion started by: lo-lp-kl
2 Replies

9. UNIX for Dummies Questions & Answers

Find users using system(List them only once)

Hey, got a few questions here for anyone who can help...... Command line to - display users using the system, but count them only once. Command line to - use the lastcomm command to display how many times ive used grep in october. Command line to - list all logged on users with at least 6... (3 Replies)
Discussion started by: xBuRnTx
3 Replies
Login or Register to Ask a Question