BASH Script, Watchuser


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting BASH Script, Watchuser
# 1  
Old 09-25-2013
BASH Script, Watchuser

I am trying to write a BASH script to be able to tell me the following for any given user. I.e., I would like to be able to be prompted to type in a users name in order to get the info below.

Code:
User           Time logged on in seconds
User pts/0    86242


Last edited by Don Cragun; 09-26-2013 at 10:40 PM.. Reason: Use CODE tags...
# 2  
Old 09-26-2013
FYI, there are lots of people in these forums who will be willing to help you if you just show what you've already tried and ask a specific question.
Nobody here will do your job for you.
That being said, let me give you a couple of hints where you could start:
1) In the example
Quote:
User Time logged on in seconds
User pts/0 86242
The 2nd field, indicated above as Time, I think it should be Terminal, because that's what a pts/0 is (see the line below the heading).
2) Do you really want to know the logged on time in seconds? If so, what for? Isn't the actual time (hh:mm) enough?
3) In the case that the time in the hh:mm is good, do you like the following output or still prefer the table format? (Either way, the command that was executed should give you a clue as to what you should include in your script):
Code:
gacanepa@Gabriel-PC ~ $ who | awk '{print "User: "$1 " - Terminal: "$2 " - Login @: " $3" "$4}'
User: gacanepa - Terminal: tty8 - Login @: 2013-09-25 19:58
User: gacanepa - Terminal: pts/0 - Login @: 2013-09-25 20:02
User: gacanepa - Terminal: pts/1 - Login @: 2013-09-25 20:14

Give it a try and get back to us if you have any questions afterwards.
# 3  
Old 09-26-2013
Here is what I came up with. I am missing something, I am not sure what it is.

Code:
#!/bin/bash
#watchuser
case $1 in "0"
NOW=$(%s)
USR=$(who | awk {print "/user1|user2|user3|user4|user5/ "$1" Terminal: "$2 "  | grep $U)
USER1='/home/Alice | grep 'Alice' | cut -d -f2 | awk 'NR==1''
USER2='/home/Bob | grep 'Bob' | cut -d -f2 | awk 'NR==1''
USER3='/home/Mike | grep 'Mike' | cut -d -f2 | awk 'NR==1''
USER4='/home/Bill | grep 'Bill' | cut -d -f2 | awk 'NR==1''
USER5='/home/ec2-user | grep 'ec2-user' | cut -d -f2 | awk 'NR==1''
USRDATE=$(echo $USR | cut -d":" -f2)
(( USRDATE = $(date --date ""$USRDATE" +%s) / 86400 ))
(( NOW = NOW / 86400 )) (( DAYS = NOW - USRDATE ))
echo

I am getting this error when attempting to run this.

Code:
./watchuser: line 3: syntax error near unexpected token `newline'
./watchuser: line 3: `case $1 in "0"'


Last edited by Don Cragun; 09-26-2013 at 09:40 PM.. Reason: Added CODE tags.
# 4  
Old 09-26-2013
Quite simple, your case statement is wrong/incomplete..

Code:
case "$1" in
"opt1")  commands ;;
esac

You then set variables, and variables within a subshell.

What do you want to do?
-----
EDIT:

Code:
#!/bin/bash
#watchuser
for User in $(cd /home;ls --hide=lost+found);do
    echo "$User online since:"
    who|grep $User|grep pts|awk '{print $3" "$4" "$5}'
done

hth

Last edited by sea; 09-26-2013 at 09:14 PM..
# 5  
Old 09-26-2013
I am trying to be able to run an output that asks me the usersname and then when I input it, it will output the following:

Code:
User         Time logged on in seconds
User pts/0 86242


Last edited by Don Cragun; 09-26-2013 at 10:42 PM.. Reason: Add CODE tags
# 6  
Old 09-26-2013
reload the page, i had edited it Smilie
It doesnt solve it, but it should get you get started.

EDIT:
You can 'read' users input by:
Code:
read -p "Enter your name: " buffer
echo "Your name is $buffer!"

However, you might prefer select..
Code:
select User in $(cd /home;/ls --hide=lost+found);do echo $User;break;done

# 7  
Old 09-26-2013
How about if I want to have an output of when I type:
Filename username
Code:
User Time logged on in seconds
Mike pts/0 86242
Mike pts/1 8422
Mike pts/2 8422


Last edited by Don Cragun; 09-26-2013 at 10:42 PM.. Reason: Change FONT and SIZE tags to CODE tags.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

In Bash shell - the ps -ef shows only the /bin/bash but the script name is not displayed

In Bash shell - the ps -ef shows only the /bin/bash but the script name is not displayed ? Is there any way to get the script names for the process command ? --- Post updated at 08:39 AM --- in KSH (Korn Shell), my command output shows the script names but when run in the Bash Shell... (3 Replies)
Discussion started by: i4ismail
3 Replies

2. Shell Programming and Scripting

How to block first bash script until second bash script script launches web server/site?

I'm new to utilities like socat and netcat and I'm not clear if they will do what I need. I have a "compileDeployStartWebServer.sh" script and a "StartBrowser.sh" script that are started by emacs/elisp at the same time in two different processes. I'm using Cygwin bash on Windows 10. My... (3 Replies)
Discussion started by: siegfried
3 Replies

3. Shell Programming and Scripting

Different behavior between bash shell and bash script for cmd

So I'm trying to pass certain json elements as env vars and use them later on in a script. Sample json: JSON='{ "Element1": "file-123456", "Element2": "Name, of, company written in, a very weird way", "Element3": "path/to/some/file.txt", }' (part of the) script: for s... (5 Replies)
Discussion started by: da1
5 Replies

4. Shell Programming and Scripting

Make a password protected bash script resist/refuse “bash -x” when the password is given

I want to give my long scripts to customer. The customer must not be able to read the scripts even if he has the password. The following command locks and unlocks the script but the set +x is simply ignored. The code: read -p 'Script: ' S && C=$S.crypt H='eval "$((dd if=$0 bs=1 skip=//|gpg... (7 Replies)
Discussion started by: frad
7 Replies

5. UNIX for Dummies Questions & Answers

Im new to bash scriping and i found this expression on a bash script what does this mean.

# check host value regex='^(||1|2|25)(\.(||1|2|25)){3}$' if ')" != "" ]; then if ]; then echo host $host not found exit 4 fi elif ]; then echo $host is an invalid host address exit 5 fi espeacailly the top regex part? ---------- Post updated at 06:58 PM ---------- Previous update was... (1 Reply)
Discussion started by: kevin298
1 Replies

6. Shell Programming and Scripting

Run bash script within a bash script

Hi everybody, Lets say, I have two bash scripts named down.sh and up.sh located in two different folders named ~/home/a/ and ~/home/b/ Now I want to write another bash script, located in ~/home/ which runs these other two scripts, so that I only have to execute this one comprehensive script... (1 Reply)
Discussion started by: NBurkhard
1 Replies

7. Shell Programming and Scripting

Bash Script: modify bash

Hey guys, i'm having trouble complete one of my bash scripts I'm hoping to --- 1. Modify bash so that then the user types "ls" the command that is executed is "ls -al" 2. Modify the point of entry in bash when the user accesses it, moving the initial location to /var I've somewhat done #2,... (9 Replies)
Discussion started by: LibRid
9 Replies

8. Shell Programming and Scripting

how to make your bash script run on a machine with csh and bash

hi, i have a script that runs on bash and would like to run it on a machine that has csh and bash. the default setting on that machine is csh. i dont want to change my code to run it with a csh shell. is there any way i can run the script (written in bash) on this machine? in other words is there... (3 Replies)
Discussion started by: npatwardhan
3 Replies

9. Shell Programming and Scripting

passing variable from bash to perl from bash script

Hi All, I need to pass a variable to perl script from bash script, where in perl i am using if condition. Here is the cmd what i am using in perl FROM_DATE="06/05/2008" TO_DATE="07/05/2008" "perl -ne ' print if ( $_ >="$FROM_DATE" && $_ <= "$TO_DATE" ) ' filename" filename has... (10 Replies)
Discussion started by: arsidh
10 Replies

10. Shell Programming and Scripting

Why generate "ash and bash" different output for same bash script?

Hi, For my bash script, terminal with bash is generate an OK output and program works right. already, terminal with ash have "line 48: syntax error: Bad substitution" output and program don't work. :confused: (0 Replies)
Discussion started by: s. murat
0 Replies
Login or Register to Ask a Question