Read a file


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers Read a file
# 1  
Old 06-16-2011
Read a file

Hi
I have a file in which data is in this format
123456,112233445566,400,ABCDEF,790
123450,123456789798,300,QWERTY,987
.
.
.
I mean to say I want to read data until I encounter a comma.
So I want to read the file and read first 123456 and write it to file. Then read 112233....and so on.

Also if the user enters suppose 123456 then it should find in the file and then start reading the file from there.

Kindly let me know how to do it. I am totally new to UNIX.
# 2  
Old 06-16-2011
your question is not clear.

please use code tag, wherever needed.

post your problem step by step and post the solution which u tried so far
# 3  
Old 06-16-2011
I have a file in which text file in which data is in the format
Code:
123456,1234567890,400,QWERTY,112121
987654,2345678901,300,ABCDEF,987909

There are similar rows in the data file.

Now I have to write a code in which user shall enter the values in the first column or the 2nd column such as 123456 or 987654, 1234567890 or 2345678901.

So I will take this input from the user and find the text entered by the user and match it in the input data file.

If the text matches then I need to write the rest of the values in that row in a new file.

Hence what I need is,
1) How to perform search (I tried grep command but if I enter 123, it searches it and says "Item Present", though it is not.
2) I want to read the data in the file until I encounter a comma, this way I shall be able to write the rest of the values of the row into the output file.

I hope problem is clear.
Kindly help me.

Last edited by Yogesh Sawant; 06-16-2011 at 05:46 PM.. Reason: added code tags
# 4  
Old 06-16-2011
use -w option in grep

1) get the input from user
2) pass the input value to the grep command with -w option

Code:
 
bash-3.00$ grep -w 123456 /tmp/myfile
123456,1234567890,400,QWERTY,112121
bash-3.00$ grep -w 123 /tmp/myfile
bash-3.00$

after that just re-direct the grep output to new file
This User Gave Thanks to itkamaraj For This Post:
# 5  
Old 06-16-2011
Thanks again, but I wanted to know for my knowledge that how to read in a file until I encounter a comma.

And this is what I have written. I am asking the user to input and I am reading that input in a variable called locationCode

Code:
echo cmd = $(grep -w "$locationCode" inputFile.txt)
if [ "$cmd" != "0" ]; then
        echo "Correct Location"
else
           {
           echo "Loaction doesnot exist"
           rm outputFilefinal.txt
           exit
           }
fi

Will this work ??

Last edited by Yogesh Sawant; 06-16-2011 at 05:47 PM.. Reason: added code tags
# 6  
Old 06-16-2011
Code:
$ awk -F"," '{for(i=1;i<=NF;i++) { if(i!=NF) {printf ("%s,",$i)} else { printf("\n")} }}' test_data 
123456,1234567890,400,QWERTY,
987654,2345678901,300,ABCDEF,

 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

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

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

3. Shell Programming and Scripting

Read from file and execute the read command

Hi, I am facing issues with the below: I have a lookup file say lookup.lkp.This lookup.lkp file contains strings delimited by comma(,). Now i want to read this command from file and execute it. So my code below is : Contents in the lookup.lkp file is : c_e,m,a,`cd $BOX | ls cef_*|tail... (7 Replies)
Discussion started by: vital_parsley
7 Replies

4. UNIX for Dummies Questions & Answers

When reading a csv file, counter to read 20 lines and wait for minute then read next 20 till end

Hello All, i am a newbie and need some help when reading a csv file in a bourne shell script. I want to read 10 lines, then wait for a minute and then do a reading of another 10 lines and so on in the same way. I want to do this till the end of file. Any inputs are appreciated ... (3 Replies)
Discussion started by: victor.s
3 Replies

5. Shell Programming and Scripting

bash: read file line by line (lines have '\0') - not full line has read???

I am using the while-loop to read a file. The file has lines with null-terminated strings (words, actually.) What I have by that reading - just a first word up to '\0'! I need to have whole string up to 'new line' - (LF, 10#10, 16#A) What I am doing wrong? #make file 'grb' with... (6 Replies)
Discussion started by: alex_5161
6 Replies

6. Shell Programming and Scripting

Read a file and search a value in another file create third file using AWK

Hi, I have two files with the format shown below. I need to read first field(value before comma) from file 1 and search for a record in file 2 that has the same value in the field "KEY=" and write the complete record of file 2 with corresponding field 2 of the first file in to result file. ... (11 Replies)
Discussion started by: King Kalyan
11 Replies

7. Programming

Cannot read a file with read(fd, buffer, buffersize) function

# include <stdio.h> # include <fcntl.h> # include <stdlib.h> # include <sys/stat.h> int main(int argc, char *argv) { int fRead, fPadded, padVal; int btRead; int BUFFSIZE = 512; char buff; if (argc != 4) { printf ("Please provide all of the... (3 Replies)
Discussion started by: naranja18she
3 Replies

8. Shell Programming and Scripting

Need help with awk - how to read a content of a file from every file from file list

Hi Experts. I need to list the file and the filename comes from the file ListOfFile.txt. Basicly I have a filename "ListOfFile.txt" and it contain Example of ListOfFile.txt /home/Dave/Program/Tran1.P /home/Dave/Program/Tran2.P /home/Dave/Program/Tran3.P /home/Dave/Program/Tran4.P... (7 Replies)
Discussion started by: tanit
7 Replies

9. UNIX for Advanced & Expert Users

How can i read a non text file in unix - ELF-64 executable object file - IA64

The binary file is ELF-64 executable object file - IA64. How i know that the source is Is there any comamnd in unix i can read these kind of files or use a thirty party software? Thanks for your help (8 Replies)
Discussion started by: alexcol
8 Replies

10. Shell Programming and Scripting

Post Shell programming: Question about source a file and read data from the file

This is shell programming assignment. It needs to create a file called .std_dbrc contains STD_DBROOT=${HOME}/class/2031/Assgn3/STD_DB (which includes all my simple database files) and I am gonna use this .std_dbrc in my script file (read the data from the database files) like this: .... (3 Replies)
Discussion started by: ccwq
3 Replies
Login or Register to Ask a Question