Loop to Convert a list from an input file and output it to another file

 
Thread Tools Search this Thread
Homework and Emergencies Homework & Coursework Questions Loop to Convert a list from an input file and output it to another file
Prev   Next
# 1  
Old 04-23-2013
Loop to Convert a list from an input file and output it to another file

Use and complete the template provided. The entire template must be completed. If you don't, your post may be deleted!

1. The problem statement, all variables and given/known data:


A) Write a script, which will take input from a file and convert the number from Centigrade to Fahrenheit and from Fahrenheit to Centigrade.



B) Requirements of the script.

1) Your data file is shown in item C.

2) The initial and converted numbers should line up in the center of the proper headings.

3) Numbers should be rounded to the nearest whole number.

4) You must use a looping structure.

5) Fully document all functions and operations within the script and in your program source code.

6) You need to have at least one script call another script and pass command line parameters. …). That second script should perform the calculations from Fahrenheit to Centigrade or from Centigrade to Fahrenheit. (Note…It’s ok to have two, one for each conversion)



C) The contents of the input data file shown below:
1
8
22
43
89
283
120
212
1043
100
287



4) Sample output of the data. Other outputs as your name and date would be additional.

Centigrade Temperature Fahrenheit Temperature
-------------------------------- ----------------------------- ----
number centered here number centered here

#(can't get them centered, each number should be centered under where it belongs and to the other side it should shows what the number is in centigrade (1F is 17C)
Code:
Fahrenheit Temperature               Centigrade Temperature
--------------------------------              ---------------------------------
                 1 -                                                    17
                 8 -                                                    13
                 22 -                                                  5
                 43                                                    6
                89                                                    31
                283                                                  139
               120                                                  48
               212                                                  100
               1043                                                561
               100                                                  37
                287                                                  141

2. Relevant commands, code, scripts, algorithms:
Code:
f=`echo -e "scale=0\n($C*9/5=32)"|bc -1`
echo -e
for in loop
Centigrade to Fahrenheit C = (F - 32) * 5/9
Fahrenheit to Centigrade F=C*9/5+32

3. The attempts at a solution (include all code and scripts):

the input file is in "inputfile"
scale=0\n to make sure it's rounded.

to convert Centigrade to Fahrenheit
Code:
echo -e " Centigrade Temperature  \tFahrenheit Temperature " >inputfile.out
for C in `cat inputfile`
do
f=`echo -e "scale=0\n(C*9/5+32)"|bc -l`
echo -e " $C   \t$f " >>inputfile.out
done






4. Complete Name of School (University), City (State), Country, Name of Professor, and Course Number (Link to Course):
Old Dominion University Norfolk, VA USA Steven Zeil, CS 252



Note: Without school/professor/course information, you will be banned if you post here! You must complete the entire template (not just parts of it).

Last edited by AliTheSnake; 04-24-2013 at 05:48 PM.. Reason: rm HTMLtags + code tags
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Programming

creating separate output file for each input file in python

Experts, Need your help for this. Please support My motive is to create seperate output file for each Input Files(File 1 and File2) in another folder say(/tmp/finaloutput) Input files File 1(1.1.1.1.csv) a,b,c 43,17104773,3 45,17104234,4 File 2(2.2.2.2.csv) a,b,c 43,17104773,1... (2 Replies)
Discussion started by: as7951
2 Replies

2. UNIX for Beginners Questions & Answers

Need list of input and output parameter of task in a text file, using shell script

//file begin ===== //some code task abcd_; input x; input y,z; //some comment output w; //some comment reg p; integer q; begin //some code end endtask : abcd_ //some code //file end ===== expected output from above... (1 Reply)
Discussion started by: rishifrnds
1 Replies

3. Shell Programming and Scripting

Use while loop to read file and use ${file} for both filename input into awk and as string to print

I have files named with different prefixes. From each I want to extract the first line containing a specific string, and then print that line along with the prefix. I've tried to do this with a while loop, but instead of printing the prefix I print the first line of the file twice. Files:... (3 Replies)
Discussion started by: pathunkathunk
3 Replies

4. Shell Programming and Scripting

awk to reformat output if input file is empty, but not if file has data in it

The below awk improved bu @MadeInGermany, works great as long as the input file has data in it in the below format: input chrX 25031028 25031925 chrX:25031028-25031925 ARX 631 18 chrX 25031028 25031925 chrX:25031028-25031925 ARX 632 14... (3 Replies)
Discussion started by: cmccabe
3 Replies

5. Shell Programming and Scripting

How to read each line from input file, assign variables, and echo to output file?

I've got a file that looks like this (spaces before first entries intentional): 12345650-000005000GL140227 ANNUAL HELC FEE EN 22345650-000005000GL140227 ANNUAL HELC FEE EN 32345650-000005000GL140227 ANNUAL HELC FEE EN I want to read through the file line by line,... (6 Replies)
Discussion started by: Scottie1954
6 Replies

6. Shell Programming and Scripting

Match list of strings in File A and compare with File B, C and write to a output file in CSV format

Hi Friends, I'm a great fan of this forum... it has helped me tone my skills in shell scripting. I have a challenge here, which I'm sure you guys would help me in achieving... File A has a list of job ids and I need to compare this with the File B (*.log) and File C (extend *.log) and copy... (6 Replies)
Discussion started by: asnandhakumar
6 Replies

7. UNIX for Dummies Questions & Answers

12. If an ‘88’ Record with BAI Code ‘902’ was found on input file and not written to Output file, re

This is my input file like this 03,105581,,015,+00000416418,,,901,+00000000148,,,922,+00000000354,,/ 49,+00000000000416920,00002/ 03,5313236,,015,+00231036992,,,045,+00231036992,,,901,+00000048428,,/ 88,100,+0000000000000,0000000,,400,+0000000000000,0000000,/ 88,902,+0000000079077,,/... (0 Replies)
Discussion started by: sgoud
0 Replies

8. Shell Programming and Scripting

split input data file and put into same output file

Hi All, I have two input file and need to generate a CSV file. The existing report just "GREP" the records with the Header and Tailer records with the count of records. Now i need to split the data into 25 records each in the same CSV file. id_file (Input file ) 227050994 232510151... (4 Replies)
Discussion started by: rasmith
4 Replies

9. Shell Programming and Scripting

AWK Script to convert input file(s) to output file

Hi All, I am hoping someone can help me with some scripting I need to complete using AWK. I'm trying to process multiple fixed files to generate one concatenated fixed file in a standard format. The Input file is:- aaaa bbbbb ccccc 1 xxxx aaa bbb aaaa bbbbb ccccc 2 abcd aaa CCC... (9 Replies)
Discussion started by: jason_v_brown
9 Replies

10. Shell Programming and Scripting

Dynamic output file generation using a input text file with predefined output format

Hi, I have two files , one file with data file with attributes that need to be sent to another file to generate a predefined format. Example: File.txt AP|{SSHA}VEEg42CNCghUnGhCVg== APVG3|{SSHA}XK|"password" AP3|{SSHA}XK|"This is test" .... etc --------- test.sh has... (1 Reply)
Discussion started by: hudson03051nh
1 Replies
Login or Register to Ask a Question