shell scripting and programming


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting shell scripting and programming
# 1  
Old 02-02-2011
shell scripting and programming

Code:
RCS file: /home/rcap/.APCVS/regs/rc/power/analysis/pow_rtl/renes_setup.g,v
Working file: ./power/analysis/pow_rtl/renes_setup.g
head: 1.14
branch:
locks: strict
access list:
symbolic names:
        br_2010_101_200: 1.13.0.12
        br_2010_101_100: 1.13.0.10
        br_2009_91_200: 1.13.0.8
        br_2009_91_100: 1.13.0.6
        br_2008_81_200: 1.13.0.4
        br_2008_81_100: 1.13.0.2
        br_2007_72: 1.11.0.6
        tag_2007_72: 1.11
        br_2007_71: 1.11.0.4
        tag_2007_71: 1.11
        RC_07_10_LOCAL_RED: 1.11
        br_2006_62: 1.11.0.2
        f2006_11_1300: 1.11
        br_2006_61: 1.10.0.4
        f2006_61_0300: 1.10
        br_2005_52: 1.10.0.2
        f2005_11_0300: 1.10
        br_2005_51: 1.2.0.2
        f2005_05_0800: 1.2
        br_2004_42: 1.1.0.2
        f2004_11_1900: 1.1
keyword substitution: kv
total revisions: 14;    selected revisions: 14
description:
----------------------------
revision 1.4
date: 2005-07-21 10:24:50 +0000;  author: gopalakr;  state: Exp;  lines: +13 -10
enabled test case
----------------------------
revision 1.3
date: 2005-05-21 14:06:02 +0000;  author: jiajun;  state: Exp;  lines: +0 -1
remove set_attr memory_limit
----------------------------
revision 1.2
date: 2004-12-13 04:42:16 +0000;  author: gopalakr;  state: Exp;  lines: +6 -1
removed link to /home/customer for lib
----------------------------
revision 1.1
date: 2004-11-11 10:31:10 +0000;  author: savita;  state: Exp;
arm customer testcase.
renes customer testcase for RTL PE . renes is giving FATAL on rep pow

 
 
 
RCS file: /home/rcap/.APCVS/regs/rc/power/cpf/RENESAS/NET06_2/run_net06_2.g,v
Working file: ./power/cpf/RENESAS/NET06_2/run_net06_2.g
head: 1.5
branch:
locks: strict
access list:
symbolic names:
        br_2010_101_200: 1.5.0.2
keyword substitution: kv
total revisions: 5;     selected revisions: 5
description:
----------------------------
revision 1.5
date: 2010-08-16 06:34:09 +0000;  author: sandeepk;  state: Exp;  lines: +3 -3
reduce log file size
----------------------------
revision 1.4
date: 2010-08-15 06:52:24 +0000;  author: sandeepk;  state: Exp;  lines: +1 -1
fixed testcase
----------------------------
revision 1.3
date: 2010-08-15 05:36:28 +0000;  author: sandeepk;  state: Exp;  lines: +2 -0
updated execlevel
----------------------------
revision 1.2
date: 2010-08-15 05:25:02 +0000;  author: sandeepk;  state: Exp;  lines: +15 -3
use name mapping flow
----------------------------
revision 1.1
date: 2010-08-10 10:41:36 +0000;  author: sandeepk;  state: Exp;
initial check in


suppose i want the final answer to be

Code:
revision 1.1  savita  ./power/analysis/pow_rtl/renes_setup.g
revision 1.1 sandeepk ./power/cpf/RENESAS/NET06_2/run_net06_2.g

and i want them in a sorted order....what shud i do ???



Moderator's Comments:
Mod Comment Please use [code] and [/code] tags when posting code, data or logs etc. to preserve formatting and enhance readability, thanks.

Last edited by zaxxon; 02-02-2011 at 07:40 AM..
# 2  
Old 02-02-2011
what is your algorithm of getting the result:

Code:
revision 1.1 savita ./power/analysis/pow_rtl/renes_setup.g
revision 1.1 sandeepk ./power/cpf/RENESAS/NET06_2/run_net06_2.g

please clearify the way of desired output? (and its logical explanation)
# 3  
Old 02-02-2011
shell scripting and programming

Code:
revision 1.1 author: sandeepk
./power/cpf/RENESAS/NET06_2/run_net06_2.g
----------------------------
revision 1.1 author: jsaikia
./dft/PCRs/910504/pcr910504/dc1.g
----------------------------
revision 1.1 author: jatin
./phys/to_place/MULT1.g
----------------------------
revision 1.1 author: sandeepk
./power/cpf/RENESAS/NET08_1/run_net08_1.g
----------------------------
revision 1.1 author: savita
./power/analysis/pow_rtl/renes_setup.g
----------------------------

how to sort the authors along with their cases given below them......
i tried sort -fd

Moderator's Comments:
Mod Comment Please use [code] and [/code] tags when posting code, data or logs etc. to preserve formatting and enhance readability, thanks.

Last edited by zaxxon; 02-02-2011 at 07:39 AM..
# 4  
Old 02-02-2011
Post an examle of expected output using [code] and [/code] tags.

Edit: Threads have been merged, nevermind. Take it as guidance when posting here anyway.
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Shell script to read lines in a text file and filter user data Shell Programming and Scripting

sxsaaas (3 Replies)
Discussion started by: VikrantD
3 Replies

2. Shell Programming and Scripting

shell programming and scripting

hi, i am trying this while loop and i only want that it should only read food as pizza....no other entry should be taken here. #!/usr/bin/perl -w $food = " "; while ( $food ne 'pizza' ) { print 'enter what you had last night: '; chomp ($food = <STDIN>); #print $food ; } ... (2 Replies)
Discussion started by: kullu
2 Replies

3. Shell Programming and Scripting

shell programming and scripting

I was trying out some new series to get it print 1 1 2 1 2 3 1 2 3 4 1 2 3 4 5 and the seond one is 1 2 2 3 3 3 4 4 4 4 5 5 5 5 5 but was unable to get the result. (5 Replies)
Discussion started by: harjinder
5 Replies

4. Shell Programming and Scripting

Shell Programming and Scripting

Hi All, How do I code a password with multiple special characters in it. Example: password is P#utar&@ None of the belwo options worked 1. passwd="P#utar&@" 2. passwd='P#utar&@' Any help will be greatly appreciated. (3 Replies)
Discussion started by: afredri
3 Replies

5. Infrastructure Monitoring

Shell Programming and Scripting

# set date to your spec: this is month/day/yr/hr/min/sec: sysdate=`date '+%m/%d/%Y-%H:%M:%S'` # get the last line before the history file is modified tail -1 /tmp/hosthistory.txt |while read lastdate mydevices do echo $lastdate echo $mydevices done LIST = 'ypcat hosts|| sort... (11 Replies)
Discussion started by: lemseffert
11 Replies

6. Shell Programming and Scripting

Shell Programming and Scripting

Hi, Iam having the files as follows: file1 aa aa aa aa ab ac ad ae file2 aa aa ab Outputfile: (20 Replies)
Discussion started by: nivas
20 Replies

7. Shell Programming and Scripting

Shell Programming and Scripting

Hi, Iam having file1 as follows: ERTYUIOU|1234567689089767688 FDHJHKJH|6817738971783893499 JFKDKLLUI|9080986766433498444 FILE2 ERTYUIOU|1234567689089767688 resh@abc_com 767637218328322332 893589893499 asdsddssd ... (21 Replies)
Discussion started by: nivas
21 Replies

8. Shell Programming and Scripting

Shell Programming and Scripting

I want to compare some files. say iam having 2 sets of files ,each is having some 10 files. ie, file1 1a.txt 1b.txt 1c.txt ... file2 2a.txt 2b.txt 2c.txt ... i need to read line by line of this files parralley.. ie.. i want to read file1 first line that is 1a.txt and file2... (2 Replies)
Discussion started by: nivas
2 Replies

9. Shell Programming and Scripting

Shell Programming and Scripting

Hi, iam having the file as follows: ABCDEFGH|0987654321234567 ABCDEFGH|0987654321234523 ABCDEFGH|0987654321234556 ABCDEFGH|0987654321234545 POIUYTRE|1234567890890678 POIUYTRE|1209867757352567 POIUYTRE|5463879088797131 POIUYTRE|5468980091344456 pls provide me the split command ... (14 Replies)
Discussion started by: nivas
14 Replies
Login or Register to Ask a Question