Sponsored Content
Top Forums Programming jumping to a specific line in a text file Post 83585 by mridula on Friday 16th of September 2005 05:42:00 AM
Old 09-16-2005
thanx for telling abt fseek().

I agree with you.
but in my case, i know the number of lines in the text file but am not aware of what the length of each line is going to be.

eg:format of the text file

Username : xyz
Machine : 10.101.11.41
Priority : 1
Status : 01
Type :
Time_of_Submittion : 00:00:00
Time_of_Execution : 00:00:00
Time_of_Completion : 00:00:00
Kill : 0
Iteration : 2000/10000


my text file will have a fixed number of rows (eg: 10 in this case). but their values might change with time(eg:username can change to abcd, machine:101.101.101.101...and so on..)
So if i want to read the value of status how do i go about it. to use fseek() i need to know the offset value.
 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Adding specific text and spaces to each line in a text file

Hi, I wanted to add specific text to each row in a text file containing three rows. Example: 0 8 7 6 5 5 7 8 9 0 7 9 7 8 9 0 1 2 And I want to add a 21 at the beginning of the first row, and blank spaces at the beginning of the second two rows. To get this: 21 0 8 7 6 5 5 7 8... (4 Replies)
Discussion started by: hertingm
4 Replies

2. Shell Programming and Scripting

Modify Specific Line of a Text File

Given a text file, how do you add a line of text after a specific line number? I believe I would want to use "sed" but I am unsure of the syntax. Thank you. Mike (5 Replies)
Discussion started by: msb65
5 Replies

3. Shell Programming and Scripting

Problem inserting text into file after specific line

this is utterly embarassing :( after posting here i revisited my files and found that when i used "vi" instead of a gui based editor, i suddenly found that the indentations were in fact wrong :( sorry about this :( (0 Replies)
Discussion started by: mocca
0 Replies

4. Shell Programming and Scripting

Reading data from a specific line in a text file

hello, I have got the following problem that I am hoping someone can help with please. 1. I have got the following text file (below) , the columns data are 'Test Day', 'Board', 'Betting Number'. TEXT FILE ============================================ 1 3 02-01-27-28-29-30 0 1... (1 Reply)
Discussion started by: jermaine4ever
1 Replies

5. Shell Programming and Scripting

Reading data from a specific line in a text file

Hello, I have a problem which is giving me headache for days, can some please help. Please see code and text fiel below. Please see text in red for the problem I am facing # Program gets an input x from user while read line ; do echo... (4 Replies)
Discussion started by: jermaine4ever
4 Replies

6. Programming

Jumping to a particular line in a file

Hi, I have an output file which has more than 1,000,000,000 lines. I am accessing this file in another C++ program. Now while accessing the output file using cin, I want to jump, say, to the 5,000,000th line directly and start accessing data from there. Is this possible? Could someone please... (4 Replies)
Discussion started by: mugga
4 Replies

7. UNIX for Dummies Questions & Answers

Inputting text to a specific line of a file

Hi all, I have a script which uses a basic line to add text into another file e.g. grep -i test * >> test.txt Is there a way I can get the output of the grep to output to a specific line in the text.txt for example output above the line starting "Bottom line..." (6 Replies)
Discussion started by: JayC89
6 Replies

8. Linux

Get a specific line number from a text file

Hello! All, Could you please tell me how to get a specific line number from a text file? For example below, ABC DEF ---> Get this line number, return to an variable GHI My OS is Linux. Thank you so much for your help in advance! (3 Replies)
Discussion started by: barryxian
3 Replies

9. Shell Programming and Scripting

Update specific field in a line of text file

I have a text file like this: subject1:LecturerA:10 subject2:LecturerA:40 if I was given string in column 1 and 2 (which are subject 1 and LecturerA) , i need to update 3rd field of that line containing that given string , which is, number 10 need to be updated to 100 ,for example. The... (6 Replies)
Discussion started by: bmtoan
6 Replies

10. Shell Programming and Scripting

Extract specific line in an html file starting and ending with specific pattern to a text file

Hi This is my first post and I'm just a beginner. So please be nice to me. I have a couple of html files where a pattern beginning with "http://www.site.com" and ending with "/resource.dat" is present on every 241st line. How do I extract this to a new text file? I have tried sed -n 241,241p... (13 Replies)
Discussion started by: dejavo
13 Replies
explain_fseek_or_die(3) 				     Library Functions Manual					   explain_fseek_or_die(3)

NAME
explain_fseek_or_die - reposition a stream and report errors SYNOPSIS
#include <libexplain/fseek.h> void explain_fseek_or_die(FILE *fp, long offset, int whence); int explain_fseek_on_error(FILE *fp, long offset, int whence); DESCRIPTION
The explain_fseek_or_die function is used to call the fseek(3) system call. On failure an explanation will be printed to stderr, obtained from the explain_fseek(3) function, and then the process terminates by calling exit(EXIT_FAILURE). The explain_fseek_on_error function is used to call the fseek(3) system call. On failure an explanation will be printed to stderr, obtained from the explain_fseek(3) function, but still returns to the caller. fp The fp, exactly as to be passed to the fseek(3) system call. offset The offset, exactly as to be passed to the fseek(3) system call. whence The whence, exactly as to be passed to the fseek(3) system call. RETURN VALUE
The explain_fseek_or_die function only returns on success, see fseek(3) for more information. On failure, prints an explanation and exits, it does not return. The explain_fseek_on_error function always returns the value return by the wrapped fseek(3) system call. EXAMPLE
The explain_fseek_or_die function is intended to be used in a fashion similar to the following example: explain_fseek_or_die(fp, offset, whence); SEE ALSO
fseek(3) reposition a stream explain_fseek(3) explain fseek(3) errors exit(2) terminate the calling process COPYRIGHT
libexplain version 0.52 Copyright (C) 2010 Peter Miller explain_fseek_or_die(3)
All times are GMT -4. The time now is 01:46 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy