Unix scripting doubts


 
Thread Tools Search this Thread
Operating Systems Solaris Unix scripting doubts
# 1  
Old 05-07-2010
Unix scripting doubts

i hav a file like this
Code:
-rwxr-xr-x   1 root     controlm    4141 Nov 13  2006 /opt/scripts/prod/fvaauditlos.ksh
-rwxr-xr-x   1 root     controlm    3958 Nov 13  2006 /opt/scripts/prod/fvaexpchbk1.ksh
-rwxr-xr-x   1 root     controlm    6471 Nov 13  2006 /opt/scripts/prod/fvaexpchbk2.ksh
-rwxr-xr-x   1 root     controlm    3960 Nov 13  2006 /opt/scripts/prod/fvaexpcrcm1.ksh

i want to print only below column, so plz suggest how to get this column alone
Code:
 root  
 root  
 root  
 root


Last edited by Scott; 05-07-2010 at 06:55 AM.. Reason: Please use code tags
# 2  
Old 05-07-2010
Code:
awk ' { print $3 } '  filename

This User Gave Thanks to amitranjansahu For This Post:
# 3  
Old 05-07-2010
Thanks Amit, i hav one more question, PLz calrify
i want print as below in 2 lines , plz tell me

Code:
root  /opt/scripts/prod/fvaauditlos.ksh
root  /opt/scripts/prod/fvaexpchbk1.ksh
root  /opt/scripts/prod/fvaexpchbk2.ksh
root  /opt/scripts/prod/fvaexpcrcm1.ksh


Last edited by Scott; 05-07-2010 at 06:55 AM.. Reason: Code tags, please...
# 4  
Old 05-07-2010
Code:
awk ' { print $3, $9 } '  filename

# 5  
Old 05-07-2010
Thanks Amit, i have one more question, plz calrify
i have a file lke this:

Code:
-rwxr-xr-x    1 oprvdw   controlm       4771 Mar  9 2009  vrc002093j.ksh
-rwxr-xr-x    1 oprvdw   controlm       4773 Mar  9 2009  vrc002092j.ksh
-rwxr-xr-x    1 oprvrc   controlm       5428 Apr  3 2009  vrc045016j.ksh
-rwxr-xr-x    1 oprvrc   controlm       5354 Apr  3 2009  vrc055141j.ksh
-rwxr-xr-x    1 svemietl controlm       2745 Feb 16 02:20 bdw0231185.sh
-rwxr-xr-x    1 svemietl controlm       2672 Feb 16 02:20 bdw0231145.sh

i want a script whcih gies o/p as below, plz tell me how t o write:

Code:
oprvdw :
vrc002093j.ksh
vrc002092j.ksh
oprvrc :
vrc045016j.ksh
vrc055141j.ksh
svemietl :
bdw0231185.sh
bdw0231145.sh


Last edited by Scott; 05-07-2010 at 06:56 AM.. Reason: Code tags, please...
# 6  
Old 05-07-2010
Code:
for i in $(awk '{print $3}' file | uniq)
do
  echo $i:
  grep " $i " file | awk '{print $9}'
done

This User Gave Thanks to jlliagre For This Post:
# 7  
Old 05-07-2010
Code:
 awk '{if ( $3 != name ){print $3 ; name=$3} print $9}' filename

Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Few doubts on Linux scripting

1) I have to create 3 scripts which create different output files. Script one creates datafiles, script2 creates control files and script3 creates flg files. The business wants the same timestamp to be attached to all the files created by these scripts. Script1- Create data files - Data files... (2 Replies)
Discussion started by: Maya_Pillai
2 Replies

2. Shell Programming and Scripting

shell scripting doubts

Hello All, I am working in a reputed software firm,currently working on testing platform (manual and automation).But I am very much intersted in unix and shell scripting,I feel that I am good at beginner level of shell scripting,still I want to practise shell scripting to become excel in it.I... (1 Reply)
Discussion started by: maheshglm
1 Replies

3. UNIX for Dummies Questions & Answers

Unix doubts

Hi All, 1. how and who calls .profile when you login 2. what is PPID and what means by PPID = 0 Thanks in Advance (2 Replies)
Discussion started by: ravi.sadani19
2 Replies

4. UNIX for Dummies Questions & Answers

Basic doubts related to Unix

Hi all, I have few question related to Unix environment and commands : 1. what is .chrc file contain and if it is not present then what happens. 2. what is .login file contain,in which dir it is present and what all other uses are their for this file 3. how and who calls .profile when you... (2 Replies)
Discussion started by: ravi.sadani19
2 Replies

5. UNIX for Dummies Questions & Answers

unix doubts

Write unix command to list or view auto links (0 Replies)
Discussion started by: ashishshah.engg
0 Replies

6. Forum Support Area for Unregistered Users & Account Problems

How to post a new thread (Regarding Unix related doubts) in Unix Forums

How to post a new thread (Regarding Unix related doubts) in Unix Forums. I registered my id but I am unable to post my Questions to Forum. Thanks & Regards, indusri (1 Reply)
Discussion started by: indusri
1 Replies

7. UNIX for Dummies Questions & Answers

Unix doubts

Hello All, I am very new to UNIX. Please help me to find answers of below questions. 1.A script is saved with name ls. When we execute the script what it will execute? a) Will execute ls command b) Will execute the script c) Will execute script or command depends on the path ... (2 Replies)
Discussion started by: aswathy
2 Replies

8. Programming

Doubts About C Compiler In Unix/linux

As all of you know whenever a program "say a.c" is complied in linux using the gcc or the cc compiler..it shows the list of errors ( if the program contains any).. i want to modify the compier script so as to list the no of errors only and not the description about the error..like" parse error " ... (1 Reply)
Discussion started by: vrs
1 Replies

9. Solaris

Unix Administration doubts ********

Hi, Can anyone tell me the correct answers for these: 1. You have 4 instances running on the same UNIX box. How can you determine which shared memory and semaphores are associated with which instance? 2. How do you increase the OS limitation for open files (LINUX and/or Solaris)? Thanks:p (1 Reply)
Discussion started by: dreams5617
1 Replies

10. UNIX for Advanced & Expert Users

unix & C doubts

Hi, I have a few doubt here : 1) I want to run a 3 different 'C' programs in same session simulteneously (parelelly). if I make a shell, it is running one after another, I mean it shout run in 3 processors. 2) In 'C' program, how can I assing a value of the unix commant cat a.txt|wc... (1 Reply)
Discussion started by: krishna
1 Replies
Login or Register to Ask a Question