Sponsored Content
Top Forums UNIX for Dummies Questions & Answers removing a character and addending to end in each line in a file Post 302162234 by arunkumar_mca on Monday 28th of January 2008 11:07:03 AM
Old 01-28-2008
removing a character and addending to end in each line in a file

HI i am having a file this

(sys19Smilienlfct:/pfact/temp>) cat temp_sand
1234567890
1234567890
1234567890
1234567890


I want to make this file as
(sys19Smilienlfct:/pfact/temp>) cat temp_sand
1456789023
1456789023
1456789023
1456789023


just take the 2nd and 3rd position and put it in end of ecah line . PLease let me know how to do that

Thanks,
Arun
 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Removing character from list line (at the end)

Hi, I have file as shown below. abc, def, abc, xyz, I have to remove ',' from end of last line (xyz,). How can I do that with single command? Is it possible or I have to iterate through complete file to remove that? - Malay (2 Replies)
Discussion started by: malaymaru
2 Replies

2. UNIX for Advanced & Expert Users

Deleting end of line $ character in file

Hi, I've got a file where in the middle of the record is a $ end of line character, visible only when I open the file in vi and do :set list. How to I get rid of the character in the middle and keep it at the end. The middle $ character always appears after SW, so that can be used to tag it.... (3 Replies)
Discussion started by: bwrynz1
3 Replies

3. UNIX for Dummies Questions & Answers

How to add new line character at the end of a file

hi all, i have this question: How to add new line character at the end of a file???? i need this because i am loading a file to sybase and i have problems with the last record thanks for your help (5 Replies)
Discussion started by: DebianJ
5 Replies

4. Shell Programming and Scripting

append a character at end of each line of a file

Hi, i want to append a character '|' at end of each line of a file abc.txt. for example if the file abc.txt conatins: a|b|c 1|2|33 w|2|11 i want result file xyz.txt a|b|c| 1|2|33| w|2|11| I know this is simple but sumhow i am not able to reach end of line. its urgent, thanks for... (4 Replies)
Discussion started by: muaz
4 Replies

5. Shell Programming and Scripting

Removing last character from each line of file

How can I remove the last character from each line of a file? This must be done without "funny" characters, as I want to transfer the code to/from Windows. Any ideas? (17 Replies)
Discussion started by: cjhancock
17 Replies

6. Shell Programming and Scripting

add character to the end of each line in file

hi all i have 32 lines in file. the length of each line is 82 , i want that in the end of each line , means in postion 83-84 to put two characters 0d(=\015), 0a(=\012) i want that the 0d will be in postion 83 and the 0a will be in postion 84 in each line of the file how shall i do it ? ... (7 Replies)
Discussion started by: naamas03
7 Replies

7. UNIX for Dummies Questions & Answers

Removing ^@ character at the end own belowof Linux file

Hi, I have a Linux file which has content as sh (0 Replies)
Discussion started by: bhuvanas
0 Replies

8. Shell Programming and Scripting

add character to every end-of line in file

Hi All I have a file which conatins record.the length of every records is 47. problem : in the end of record i don't have a "\015" character. i want to add this "\015" charcter in the end of every record. the file contains something like 700 records. i've tried with sed command - nothing. ... (8 Replies)
Discussion started by: naamas03
8 Replies

9. Shell Programming and Scripting

How to remove new line character at end of file.

I need to remove new line character from end of file. Suppose here are content. a|b|c|d|r a|b|c|d|r a|b|c|d|r <new line> that means file contains 4 lines but data is there in 3 lines. so I want that only 3 lines should be there in file. Please help (20 Replies)
Discussion started by: varun940
20 Replies

10. Shell Programming and Scripting

Removing last character of a specific line from a file

Hello guys, I would need to remove the last character ")" of a specific line. This can be from any line. Your help is appreciated. Below is the line. HOSTNAME=(DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)) Please help. (6 Replies)
Discussion started by: sang8g
6 Replies
EIO_READ(3)								 1							       EIO_READ(3)

eio_read - Read from a file descriptor at given offset.

SYNOPSIS
resource eio_read (mixed $fd, int $length, int $offset, int $pri, callable $callback, [mixed $data = NULL]) DESCRIPTION
eio_read(3) reads up to $length bytes from $fd file descriptor at $offset. The read bytes are stored in $result argument of $callback. PARAMETERS
o $fd - Stream, Socket resource, or numeric file descriptor o $length - Maximum number of bytes to read. o $offset - Offset within the file. o $pri -The request priority: EIO_PRI_DEFAULT, EIO_PRI_MIN, EIO_PRI_MAX, or NULL. If NULL passed, $pri internally is set to EIO_PRI_DEFAULT. o $callback -$callback function is called when the request is done. It should match the following prototype: void callback(mixed $data, int $result[, resource $req]); o $data -is custom data passed to the request. o $result -request-specific result value; basically, the value returned by corresponding system call. o $req -is optional request resource which can be used with functions like eio_get_last_error(3) o $data - Arbitrary variable passed to $callback. RETURN VALUES
eio_read(3) stores read bytes in $result argument of $callback function. EXAMPLES
Example #1 eio_read(3) example <?php // Open a temporary file and write some bytes there $temp_filename = "eio-temp-file.tmp"; $fp = fopen($temp_filename, "w"); fwrite($fp, "1234567890"); fclose($fp); /* Is called when eio_read() is done */ function my_read_cb($data, $result) { global $temp_filename; // Output read bytes var_dump($result); // Close file eio_close($data); eio_event_loop(); // Remove temporary file @unlink($temp_filename); } /* Is called when eio_open() is done */ function my_file_opened_callback($data, $result) { // $result should contain the file descriptor if ($result > 0) { // Read 5 bytes starting from third eio_read($result, 5, 2, EIO_PRI_DEFAULT, "my_read_cb", $result); eio_event_loop(); } else { // eio_open() failed unlink($data); } } // Open the file for reading and writing eio_open($temp_filename, EIO_O_RDWR, NULL, EIO_PRI_DEFAULT, "my_file_opened_callback", $temp_filename); eio_event_loop(); ?> The above example will output something similar to: string(5) "34567" SEE ALSO eio_open, eio_write, eio_close, eio_event_loop. PHP Documentation Group EIO_READ(3)
All times are GMT -4. The time now is 05:17 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy