Create a file with input values required


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers Create a file with input values required
# 8  
Old 08-30-2013
Why don't you combine a few of those commands:
Code:
echo $(($1-$2+$3-$4+2)) > swseq.tmp
printf " %s          0 \n" $(seq $1 -1 $2) >> swseq.tmp
printf " %s          1 \n" $(seq $3 -1 $4) >> swseq.tmp

# 9  
Old 08-31-2013
RudiC

Here the last,,, Thanks a lot for your helpSmilieSmilie

Code:
      printf "Please enter the swath numbers in order of recording.\n"
      printf "\n"
             read -p "Last swath for the previous shipment: " lastsw1
      printf "\n"
             read -p "Last swath for actual shipmenth : " lastsw2


fsw=2351
lsw1=$lastsw1
fsw2=`expr $lastsw1 - 1`
lsw2=$lastsw2


set $fsw $lsw1 $fsw2 $lsw2

echo "" $(($1-$2+$3-$4+2)) > swseq.tmp
printf " %s          0 \n" $(seq $1 -1 $2) >> swseq.tmp
printf " %s          1 \n" $(seq $3 -1 $4) >> swseq.tmp

unix2dos -q swseq.tmp

# 10  
Old 09-01-2013
If unix2dos' only purpose is to append the <carriage return> char for windows editors, you could also leave that out:
Code:
printf " %d\r\n" $(($1-$2+$3-$4+2)) > swseq.tmp
printf " %s\t0\r\n" $(seq $1 -1 $2) >> swseq.tmp
printf " %s\t1\r\n" $(seq $3 -1 $4) >> swseq.tmp

This User Gave Thanks to RudiC For This Post:
# 11  
Old 09-02-2013
Hi RudiC
Thanks a lot for your support
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Check if 2 input values exists in a file

I have a file number.txt.I need to get 2 inputs from the terminal like a=100 and b=200.If a and b are there in the file,then check if a < b,print "less".If a is not there in the file,print "a is missing" or if b is not there in the file,print "b is missing". number.txt: 100 200 300 (2 Replies)
Discussion started by: aneeta13
2 Replies

2. Shell Programming and Scripting

Bash to search file based off user input then create new file

In the below bash a file is downloaded when the program is opened and then that file is searched based on user input and the result is written to a new file. For example, the bash is opened and the download.txt is downloaded, the user then enters the id (NA04520). The id is used to search... (5 Replies)
Discussion started by: cmccabe
5 Replies

3. Shell Programming and Scripting

Replace two values in a file with input from two different files

Hi, I was having the following issue cat input hello1, my name is unix.com. I am awesome. Hope you know this, hello2! cat hello1.txt Hi Friends Hi Folks Hi Well-Wishers cat hello2.txt Honey Sweety Darling Required Output (8 Replies)
Discussion started by: jacobs.smith
8 Replies

4. Shell Programming and Scripting

Create different files from input file.

I have file A.txt File A 1,Hi,234 2,Hello,345 1,Kal,980, 9,KJ,098 2,de,098 .. ... I have more then 600 lines... I want separate the files as per 150 line. First 150 lines ----File A1.xtx Second 150 lines ---File A2.txt Third 150 lines----File A3.txt. ... (4 Replies)
Discussion started by: asavaliya
4 Replies

5. Shell Programming and Scripting

How to generate a csv files by separating the values from the input file based on position?

Hi All, I need help for doing the following. I have a input file like: aaaaaaaaaabbbbbbbbbbbbbbbbbbbb cccbbbbbaaaaaadddddaaaabbbbbbb now I am trying to generate a output csv file where i will have for e.g. 0-3 chars of each line as the first column in the csv, 4-10 chars of the line as... (3 Replies)
Discussion started by: babom
3 Replies

6. Shell Programming and Scripting

Print required values at end of the file by using AWK

I am looking help in awk, quick overview. we will get feed from external system . The input file looks like below. Detail Id Info Id Order Id STATUS Status Date FileDetail 99127942 819718 CMOG223481502 PR 04-17-2011 06:01:34PM... (7 Replies)
Discussion started by: dvrbabu
7 Replies

7. Shell Programming and Scripting

Create Multiple files by reading a input file and changing the contents

Being new to this area .I have been assigned a task which i am unable to do . Can any one please help me . Hi I have requirement where i have input file XYZ_111_999_YYYYMMDD_1.TXT and with header and series of Numbers and Footer. I want to create a mutiple output files with each file having a... (2 Replies)
Discussion started by: bhargavkr
2 Replies

8. UNIX for Dummies Questions & Answers

Create file with column values

Hi, I have a data file looks like the following ID STARTDATE ENDDATE 101 20090520 20090521 102 20090521 20090522 103 20090522 20090523 104 20090523 20090524 105 20090524 20090525 106 20090525 20090526 107 ... (3 Replies)
Discussion started by: naveen.kuppili
3 Replies

9. UNIX for Dummies Questions & Answers

create an input file

I am using a large unix server at my college. I have remote access to it on my laptop. I have installed a program on the large unix server, and want to write to the program. How do I alter parameters to read input and write output somewhere else?. I would like to read input and write output to my... (2 Replies)
Discussion started by: stonna
2 Replies

10. Shell Programming and Scripting

How to create a directory structure with getting input from a file.

Hi How to create a directory structure with getting input from a file. I have file in that following lines are written. ./activemq-4.1.2/activemq-core-4.1.2.jar ./activemq-4.1.2/backport-util-concurrent-2.1.jar ./camel-1.4.0/apache-camel-1.4.0.jar ./camel-1.4.0/lib/activation-1.1.jar... (12 Replies)
Discussion started by: itsjoy2u
12 Replies
Login or Register to Ask a Question