Basic use of who, cut, grep and pipes??


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Basic use of who, cut, grep and pipes??
# 1  
Old 02-12-2012
Basic use of who, cut, grep and pipes??

Hi, I'm new to shell scripting and i'm trying to write code which contains exactly three pipe commands (e.g. A | B | C) to return a list of the users currently logged into the system. I've been told three useful commands i could use are who, grep and cut. I know 'who' return a list of the users logged in with some information about them and a combination of the other two might be able to extract the exact user name. Can anyone help me out? Thanks.
# 2  
Old 02-12-2012
This sounds like homework. For that kind of requests we have special subforum: Homework & Coursework Questions. Read and follow rules that govern it.
# 3  
Old 02-12-2012
First thing when posting questions is to mention what Operating System and Version you have and what Shell you prefer.

We guess that the output you require is more interesting than just typing the "who" command. The output from "who", "who -q" and "who -u" has much variety across Operating Systems and versions.

It's usual to show sample input and sample output with an explanation of the process.

To us the "user name" would be the login name of the user. You might be referring to the Comments field in the password file and you might not.
# 4  
Old 02-12-2012
i'm using ubuntu 11.10...sorry I wasn't very specific.
# 5  
Old 02-12-2012
Please post sample input and expected output. We don't know what the output from your "who" command looks like or what your intended output should look like. While doing this perhaps post some of your ideas and tests.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Basic grep question

Shell : Bash shell (Fedora 26) In the below text file (output.txt), I need to find all lines starting with the pattern pc. As you can see, only one line matches this condition (pc hello world). But, my below 3 attempts return wrong output. How do I use the grep command correctly here ? ... (4 Replies)
Discussion started by: kraljic
4 Replies

2. Shell Programming and Scripting

Basic grep -c Question

Hello, I have a csv list which contains a reference and tariff code for every customer we have (~7.2 million) looking something like this: customernumber,tariff 012345678910,T0001 012345678911,T0002 012345678912,T0001-A0001 I have a 2nd list which contains every unique tariff and... (8 Replies)
Discussion started by: Cludgie
8 Replies

3. Shell Programming and Scripting

Cut Lines using grep

Hi, I have a SQL script with "create table" and "alter table" statements and I want to cut all the alter table statements from original file (A) and move it to a different file (B). Can you please me the option. Thanks a lot for your time. (3 Replies)
Discussion started by: bhupinder08
3 Replies

4. Slackware

How should I cut this line using cut and grep?

not sure how to do it. wan't to delete it using cut and grep ince i would use it in the shell. but how must the command be? grep "64.233.181.103 wwwGoogle.com" /etc/hosts | cut -d the delimeter is just a space. can you help meplease. :D (1 Reply)
Discussion started by: garfish
1 Replies

5. Shell Programming and Scripting

Basic Grep

I am trying to grep a section of .txt file...but once I grep the certain area of the file I would like to display all lines below it as well....how do I have to go about doing this... example grep "Sidney Crosby" hockey.txt result Sidney Crosby Age Goals Assist Can this be done... (8 Replies)
Discussion started by: chrisp200
8 Replies

6. Shell Programming and Scripting

basic grep question

I think I am doing this correctly, but it is responding very quickly with no results so I am not sure. I need to do a case insensitive grep of all files in my current directory grep -i <keyword> /my/directory is that correct? (1 Reply)
Discussion started by: guessingo
1 Replies

7. Shell Programming and Scripting

tail, grep and cut

Hello all, I have some weird problem that kinda baffles me. Say I have the following test file: claudia:~/tmp$ cat testfile.txt This is a test line This is the second test line And yeah, this is the third test line Then say I want to tail the file, grep for the word "third" then... (7 Replies)
Discussion started by: sylaan
7 Replies

8. Shell Programming and Scripting

cut sed grep or other?

Hi Is there a way to cut the last two characters off a word or number given that this word or number can be of varying length? I have tried something like TEST=`echo $OLD | cut -c 1-5` where $OLD is a variable containing a number like 1234567 which gives a result of 12345. This is fine... (4 Replies)
Discussion started by: rleebife
4 Replies

9. Shell Programming and Scripting

grep and cut....

hi, i have a simple question: in hpux 11i; this cmd : cat mailtest |grep sekar >test1 gives the output file with the name test1. i want to remove the line which contains the "sekar" and put the result in the new file.... what is the command for that?.. (2 Replies)
Discussion started by: sekar sundaram
2 Replies

10. Filesystems, Disks and Memory

PIPEs and Named PIPEs (FIFO) Buffer size

Hello! How I can increase or decrease predefined pipe buffer size? System FreeBSD 4.9 and RedHat Linux 9.0 Thanks! (1 Reply)
Discussion started by: Jus
1 Replies
Login or Register to Ask a Question