Reading Input from File and Duplicates Output


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Reading Input from File and Duplicates Output
# 1  
Old 10-17-2005
Reading Input from File and Duplicates Output

Greetings to all,

I would like to read input from a file and make duplications from it with Linux shell.

For e.g.

Input file
-----------
ABC
ABB
ABA
-------------------------------
Output file
------------
ABC
ABC
ABC

ABB
ABB
ABB

ABA
ABA
ABA
--------------------------
I am trying to build a table from this, any quick help will be appreciated.

Thank you.

cheers,
# 2  
Old 10-17-2005
Code:
while read record
do
      echo "$record"
      echo "$record"
      echo "$record"
done < oldfile > newfile

# 3  
Old 10-18-2005
Hi Jim,

Lets say if I am to duplicate ABC for 200 times, how do I put it into a control loop.

Sorry to make you spoon fed, I am trying to help my friend who need a fast solution for her assignment.

Thanks a lot.

cheers,
# 4  
Old 10-18-2005
Quote:
Originally Posted by noelcantona
... am trying to help my friend who need a fast solution for her assignment.
Rules say

(6) Do not post classroom or homework problems.
# 5  
Old 10-18-2005
Hit my nickname 'noelcantona' in Google, from the hit you get, tell me whether I am looking for a quick solution for my homework.

My friend needs help. He received 4 excels file with 60k of lines everyday. He is lazy to look for another solution and doing the ctrl+c and ctrl+v way. Approximately 2 hours per file.

Initially this question is posted in sqlserver forum but he can't use sqlserver, so I am here. I pity him, thats why I am doing my first post here in unix.com.

My meaning of assignment here does not mean homework but job assignment.

cheers,
-NoeL-
# 6  
Old 10-18-2005
Look at the solutions provided in this thread - for command

vino
# 7  
Old 10-18-2005
Thank you for your quick response.
Appreciate that.

cheers,
-NoeL-
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

User input while reading from a file

I am not able to capture the user input in this script(bash).There is prompt for user input.Could some one help me capture user input while reading afile? while read line do echo "$i" path1=$line path2=`echo $line|sed s/new_dir/old_dir/` echo "Do you want to replace?";... (4 Replies)
Discussion started by: parijat guh
4 Replies

2. Shell Programming and Scripting

Reading input from web into UNIX file

Hi, Could someone let me know how to read input from a web page into a unix file. I am writing my script in bash shell in Solaris version. Thanks in advance, ayarlaga. (7 Replies)
Discussion started by: ayarlaga
7 Replies

3. UNIX for Dummies Questions & Answers

Help in reading the date from the input file name

Hi, I need to read the date from the input file. The format of the input file is as follows: a_b_c_yyyymmdd.txt I need to read the date(yyyymmdd) part from the name of the input file. Would really appreciate if someone can help me in this regard Thanks a lot. (1 Reply)
Discussion started by: Sunny_teotia
1 Replies

4. Shell Programming and Scripting

awk- reading input file twice

Hello, I've been trying to come up with a solution for the following problem; I have an input file with two columns and I want to print as an output the first column without any changes but for the second column, I want to divide it by its last value. Example input: 1 9 2 10 3 11 4 12 5... (14 Replies)
Discussion started by: acsg
14 Replies

5. Shell Programming and Scripting

Reading from a File and Using as an Input variable

I need to know how the the string constant from Input File should be read and provide as input data for the script . INPUT FILE CONST VARIABLE myname=/root/dir/syslog/myname1 myname=/root/dir/syslog/myname2 myname=/root/dir/syslog/myname3 urname=/root/dir/syslog/urname1... (6 Replies)
Discussion started by: baraghun
6 Replies

6. 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

7. Shell Programming and Scripting

Reading specific contents from 1 input files and appending it to another input file

Hi guys, I am new to AWK and unix scripting. Please see below my problem and let me know if anyone you can help. I have 2 input files (example given below) Input file 2 is a standard file (it will not change) and we have to get the name (second column after comma) from it and append it... (5 Replies)
Discussion started by: sksahu
5 Replies

8. Shell Programming and Scripting

reading input from a file

I am trying to read input for a C program (that expects input from the user) from a file using the shell command: progname < filename but it seems that the program considers the char '<' as the first input, hence causing an "error" in my program. I checked it with another program and it... (2 Replies)
Discussion started by: nadbar
2 Replies

9. Shell Programming and Scripting

Help reading an input file in KSH

First I' d like to say you guys are awesome. :) I have a word document that I cut and paste into Textpad and it removed all the fancy formatting which is fine with me. I WinScp'd it to the box and and called it inputfile.txt. Opened it in vi and don't see any special characters or stuff that... (2 Replies)
Discussion started by: zilla30066
2 Replies

10. Shell Programming and Scripting

Script for reading an input file

#!/bin/sh rpt="/export/home/legato/rpt_offsite"/test_eject.tape cat <$rpt while read line do echo $line perform routine done I am trying to read the contents of this file line by line and perform a routine for each line read. The file contents are numbers.. What is wrong with my... (1 Reply)
Discussion started by: gzs553
1 Replies
Login or Register to Ask a Question