task


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting task
# 8  
Old 05-23-2011
Thanks again,
It can happen that X,Y,Z is no the last column but lets say the 2nd, 3rd last, its custom.
But these values are always under the same column.

Thanks
# 9  
Old 05-23-2011
Quote:
Originally Posted by hernand
Thanks again,
It can happen that X,Y,Z is no the last column but lets say the 2nd, 3rd last, its custom.
But these values are always under the same column.

Thanks
variable 'xyz' denotes the column you want to take into account:
Code:
nawk -v xyz=3 '!FNR%2 {print prev,$xyz;print $0,l;next} {prev=$0;l=$xyz}' inputFile

# 10  
Old 05-25-2011
Hi,

First thanks for all your replies.
Sorry I made mistake when explaining
This is how my file looks like:
INPUT:
Code:
c1  c2  c3   c4  c5   c6     c7 etc.
 *   *    X     *    *    X1     *
 *   *    Y     *    *    Y1     *
 *   *    Z     *    *     Z1     *
 *   *    W   *    *    W1    *

etc.

(the column position of tho values- X,X1 can be custom) c1-c7 is column number
Values X1-W1 should be replaced with values X-W.

This is what I need:
OUTPUT:
Code:
c1  c2  c3   c4  c5   c6    c7 etc.
 *   *    X     *    *    Y       *
 *   *    Y     *    *    X       *
 *   *    Z     *    *    W       *
 *   *    W   *    *    Z        *

etc.
BTW I use RH5 Linux , I dont have nawk ,just awk.
Thanks a lot.

Last edited by vgersh99; 05-25-2011 at 11:08 AM.. Reason: code tags
# 11  
Old 05-27-2011
Thanks
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