task


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting task
# 1  
Old 05-22-2011
task

Hi all,
I'm newbie and stuck here. Thanks for any help.
Input(txt file)
Code:
a b X 
c d Y
e f Z
g h W

Requested output:
Code:
a b X Y
c d Y X
e f Z W
g h W Z

Moderator's Comments:
Mod Comment
Please use code tags when posting data and code samples!

Last edited by vgersh99; 05-22-2011 at 06:26 PM.. Reason: code tags, please!
# 2  
Old 05-22-2011
Quote:
Originally Posted by hernand
Hi all,
I'm newbie and stuck here. Thanks for any help.
Input(txt file)
Code:
a b X 
c d Y
e f Z
g h W

Requested output:
Code:
a b X Y
c d Y X
e f Z W
g h W Z

Moderator's Comments:
Mod Comment
Please use code tags when posting data and code samples!
Would you care to elaborate on the "rules" on this 'game' (without us having to guess)?

Just a guess:
Code:
nawk '!FNR%2 {print prev,$NF;print $0,l;next} {prev=$0;l=$NF}' inputFile


Last edited by vgersh99; 05-22-2011 at 06:35 PM..
# 3  
Old 05-22-2011
The rule might be:
Reverse the order of column 3 in a circular array, then rotate two notches forward.
Just a guess.

Would help to know what programming language should be used and whether there is a better definition of the rule.
# 4  
Old 05-23-2011
Thanks for comments,
sorry for not giving any description,
rule is quite simple:
take value from last column in every odd row and add it as last column in next row,
similarly take value from last column (original without previous adding) in every even row and add to the end of previous row. etc.
I need kshell script.
Thanks

Last edited by hernand; 05-23-2011 at 10:32 AM..
# 5  
Old 05-23-2011
Quote:
Originally Posted by hernand
Thanks for comments,
sorry for not giving any description,
rule is quite simple:
take value from last column in every odd row and add it as last column in next row,
similarly take value from last column (original without previous adding) in every even row and add to the end of previous row. etc.
I need kshell script.
Thanks
Did the posted 'guess' serve the purpose?
# 6  
Old 05-23-2011
Unfortunately not, its giving empty result Smilie
# 7  
Old 05-23-2011
Quote:
Originally Posted by hernand
Unfortunately not, its giving empty result Smilie
strange, I'm getting the expected output given your sample input file...
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Automate a task

Dear All, I am relatively new to UNIX and wanted to accomplish a simple task which should be automated. That's why I need your help. I shall briefly describe what I want. Basically, there is a process (X) (related to a particular software which I am using in my system) which automatically... (5 Replies)
Discussion started by: Samiran Dam
5 Replies

2. Homework & Coursework Questions

[HELP] Easy task

I have a simple task for my school work. I'm new with unix, so i need help. I need to write a scenario. Task is. From created txt file read first 3 words and create a 3 catalogs with those 3 words. 2 of those new catalogs should be transferred to other directory. If someone could help me just... (1 Reply)
Discussion started by: justynykas
1 Replies

3. Shell Programming and Scripting

Task

Hi experts, I have a problem with the below shell task: I need to modify the file creatin a paired row , per each row which matches filter (e.g. number of nonempty columns = 5) Output should look like this: second row is original one from the input, first row(red) is pairing row, it's... (29 Replies)
Discussion started by: hernand
29 Replies

4. Shell Programming and Scripting

last task for my script

hi, infile- create table salary ( occupation_code char(40), earnings decimal(10,2), occ_yearend integer ); outfile- salary:create table salary salary:( occupation_code char(40), salary: earnings decimal(10,2), salary: occ_yearend integer salary:); Thanks. (4 Replies)
Discussion started by: dvah
4 Replies

5. Shell Programming and Scripting

Need a help to automate a task

I need to automate a manual task using shell scripting. The scenario is like :- #!/usr/bin/sh echo "please enter the name of the lab server to test ..." read s ssh $s This is peace of the script which will allow me to login to another server using "ssh". I have a conf file which is having... (4 Replies)
Discussion started by: Renjesh
4 Replies

6. Shell Programming and Scripting

Parse an XML task list to create each task.xml file

I have an task definition listing xml file that contains a list of tasks such as <TASKLIST <TASK definition="Completion date" id="Taskname1" Some other <CODE name="Code12" <Parameter pname="Dog" input="5.6" units="feet" etc /Parameter> <Parameter... (3 Replies)
Discussion started by: MissI
3 Replies

7. Shell Programming and Scripting

Need help with a manual task

I have an ASCII file that I receive on a monthly bases that is fixed length. I break the file into separate files based on a 5 character numerical sequence. I have 20 different sequences I have to find. the input file looks something like this xy-ins 2008yuthnrlsinrthsntwilgrha33260001... (4 Replies)
Discussion started by: jcalisi
4 Replies

8. Shell Programming and Scripting

comment and Uncomment single task out of multiple task

I have a file contains TASK gsnmpproxy { CommandLine = $SMCHOME/bin/gsnmpProxy.exe } TASK gsnmpdbgui { CommandLine = $SMCHOME/bin/gsnmpdbgui.exe I would like to comment and than uncomment specific task eg TASK gsnmpproxy Pls suggest how to do in shell script (9 Replies)
Discussion started by: madhusmita
9 Replies

9. UNIX for Dummies Questions & Answers

process vs task

Hi, I am new to this forum and unix too. I have just started learning unix. As I was going through the first chapter, I read that unix is multitasking, multiprogramming, multiprocessing and multiuser OS. My question is: Is there any difference between a TASK and a PROCESS. How are PROCESS... (2 Replies)
Discussion started by: hana
2 Replies
Login or Register to Ask a Question