Sponsored Content
Top Forums Shell Programming and Scripting How to Compare two files depend on line length Chars Post 302248751 by elj3dah on Sunday 19th of October 2008 12:58:35 PM
Old 10-19-2008
Many Thanks for your swift reply,

However, this is not what I am looking for, let me example it to be easier for understanding in order to help me.

File1 contain 500 records and each line lenght has 640 chars
File2 contain 1500 records and each line length has 640 chars.

Now;
My File2 will be my source, I need one line length of 630 chars from File2 to check if it's exist in File1, If yes, then go to second line search.
Else, copy this line into new file (File3) but this time with exact line length of 640 from the orginal instead of 630 chars.

I hope this make it clear.

Thanks.
 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

find 4 chars on 2nd line, 44 chars over

I know this should be simple, but I've been manning sed awk grep and find and am stupidly stumped :( I'm trying to use sed (or awk, find, etc) to find 4 characters on the second line of a file.txt 44-47 characters in. I can find lots of sed things for lines, but not characters. (4 Replies)
Discussion started by: unclecameron
4 Replies

2. Shell Programming and Scripting

compare line in two files

Dear All i want to compate two diff file line by line. Kindly help me. file 1: 1;givi;01012000;wer 2;sss;02012000;rrr 3;ccc;03012000;ttt file 2: 0;uuu;01012000;lll 1;givi;01012000;wer 2;sss;02012000;rrr 3;ccc;03012000;ttt 5;givi;01012000;hhh Output1: comman line to both file... (3 Replies)
Discussion started by: jaydeep_sadaria
3 Replies

3. Shell Programming and Scripting

Compare two text files line by line

Hi all I need help on comparing two texts files line by line and print the total number of lines matched. Any help is appreciated. Thanks in advance. (4 Replies)
Discussion started by: my_Perl
4 Replies

4. Shell Programming and Scripting

how compare first line of two files

Hi, Unix Gurus: I have a requirement which need to compare the first line of two files. e.g; file1 123 abc def file2 123 abcdef defe I need compare first line: in two file: in this case, two file contain same value in first line (123) anybody can help me. Thanks in advance (2 Replies)
Discussion started by: ken002
2 Replies

5. Shell Programming and Scripting

How to compare two files line by line

Using diff to compare 2 files FILE1: AAA AAA AAA AAA AAA AAA FILE2: BBB BBB AAA AAA BBB BBB diff FILE1 FILE2 (3 Replies)
Discussion started by: yannsun
3 Replies

6. Shell Programming and Scripting

how to read the contents of two files line by line and compare the line by line?

Hi All, I'm trying to figure out which are the trusted-ips and which are not using a script file.. I have a file named 'ip-list.txt' which contains some ip addresses and another file named 'trusted-ip-list.txt' which also contains some ip addresses. I want to read a line from... (4 Replies)
Discussion started by: mjavalkar
4 Replies

7. Shell Programming and Scripting

Check for length which exceeds specified length in a line

Hi, I have a issue, I need to loop through a comma delimited file and check for the length which exceeds specified length , if Yes truncate the string. But my problem is , I do not have to check for all the fields and the field lenght is not same for all the fields. For ex: Say my line... (9 Replies)
Discussion started by: rashmisb
9 Replies

8. Shell Programming and Scripting

Perl how to compare two pdf files line by line

Hi Experts, Would really appreciate if anyone can guide me how to compare two pdf files line by line and report the difference to another file. (3 Replies)
Discussion started by: prasanth_babu
3 Replies

9. Shell Programming and Scripting

Compare fields in two files line by line

I am new to awk scripting. I want to do a field by word (field) comparison of two files File1.txt and File2.txt. The files contain a list of | (pipe) separated field. **File 1: ------------------- aaa|bbb|ccc|eee|fff lll|mmm|nnn|ooo|ppp rrr|sss|ttt|uuu|vvv** File 2: ... (7 Replies)
Discussion started by: dhruvmohan
7 Replies

10. UNIX for Beginners Questions & Answers

Compare two files line by line in bash

Hello All! Thanks for taking time out and helping. My issue is, I have two files that have file names in it. Now, i need to go through each line of both the files and when the file names are different, i need to rename the file. Below is the example: File1</ fil1ename1.txt filename2,txt... (2 Replies)
Discussion started by: svks1985
2 Replies
textutil::adjust(n)				    Text and string utilities, macro processing 			       textutil::adjust(n)

__________________________________________________________________________________________________________________________________________________

NAME
textutil::adjust - Procedures to adjust, indent, and undent paragraphs SYNOPSIS
package require Tcl 8.2 package require textutil::adjust ?0.7? ::textutil::adjust::adjust string ?option value...? ::textutil::adjust::readPatterns filename ::textutil::adjust::listPredefined ::textutil::adjust::getPredefined filename ::textutil::adjust::indent string prefix ?skip? ::textutil::adjust::undent string _________________________________________________________________ DESCRIPTION
The package textutil::adjust provides commands that manipulate strings or texts (a.k.a. long strings or string with embedded newlines or paragraphs), adjusting, or indenting them. The complete set of procedures is described below. ::textutil::adjust::adjust string ?option value...? Do a justification on the string according to the options. The string is taken as one big paragraph, ignoring any newlines. Then the line is formatted according to the options used, and the command returns a new string with enough lines to contain all the printable chars in the input string. A line is a set of characters between the beginning of the string and a newline, or between 2 newlines, or between a newline and the end of the string. If the input string is small enough, the returned string won't contain any newlines. Together with ::textutil::adjust::indent it is possible to create properly wrapped paragraphs with arbitrary indentations. By default, any occurrence of space or tabulation characters are replaced by a single space so that each word in a line is separated from the next one by exactly one space character, and this forms a real line. Each real line is placed in a logical line, which has exactly a given length (see the option -length below). The real line may be shorter. Again by default, trailing spaces are ignored before returning the string (see the option -full below). The following options may be used after the string parameter, and change the way the command places a real line in a logical line. -full boolean If set to false (default), trailing space characters are deleted before returning the string. If set to true, any trailing space characters are left in the string. -hyphenate boolean If set to false (default), no hyphenation will be done. If set to true, the command will try to hyphenate the last word of a line. Note: Hyphenation patterns must be loaded prior, using the command ::textutil::adjust::readPatterns. -justify center|left|plain|right Sets the justification of the returned string to either left (default), center, plain or right. The justification means that any line in the returned string but the last one is build according to the value. If the justification is set to plain and the number of printable chars in the last line is less than 90% of the length of a line (see the option -length), then this line is justified with the left value, avoiding the expansion of this line when it is too small. The meaning of each value is: center The real line is centered in the logical line. If needed, a set of space characters are added at the beginning (half of the needed set) and at the end (half of the needed set) of the line if required (see the option -full). left The real line is set on the left of the logical line. It means that there are no space chars at the beginning of this line. If required, all needed space chars are added at the end of the line (see the option -full). plain The real line is exactly set in the logical line. It means that there are no leading or trailing space chars. All the needed space chars are added in the real line, between 2 (or more) words. right The real line is set on the right of the logical line. It means that there are no space chars at the end of this line, and there may be some space chars at the beginning, despite of the -full option. -length integer Set the length of the logical line in the string to integer. integer must be a positive integer value. Defaults to 72. -strictlength boolean] If set to false (default), a line can exceed the specified -length if a single word is longer than -length. If set to true, words that are longer than -length are split so that no line exceeds the specified -length. ::textutil::adjust::readPatterns filename Loads the internal storage for hyphenation patterns with the contents of the file filename. This has to be done prior to calling command ::textutil::adjust::adjust with "-hyphenate true", or the hyphenation process will not work correctly. The package comes with a number of predefined pattern files, and the command ::textutil::adjust::listPredefined can be used to find out their names. ::textutil::adjust::listPredefined This command returns a list containing the names of the hyphenation files coming with this package. ::textutil::adjust::getPredefined filename Use this command to query the package for the full path name of the hyphenation file filename coming with the package. Only the filenames found in the list returned by ::textutil::adjust::listPredefined are legal arguments for this command. ::textutil::adjust::indent string prefix ?skip? Each line in the string is indented by adding the string prefix at its beginning. The modified string is returned as the result of the command. If skip is specified the first skip lines are left untouched. The default for skip is 0, causing the modification of all lines. Neg- ative values for skip are treated like 0. In other words, skip > 0 creates a hanging indentation. Together with ::textutil::adjust::adjust it is possible to create properly wrapped paragraphs with arbitrary indentations. ::textutil::adjust::undent string The command computes the common prefix for all lines in string consisting solely out of whitespace, removes this from each line and returns the modified string. Lines containing only whitespace are always reduced to completely empty lines. They and empty lines are also ignored when computing the prefix to remove. Together with ::textutil::adjust::adjust it is possible to create properly wrapped paragraphs with arbitrary indentations. BUGS, IDEAS, FEEDBACK This document, and the package it describes, will undoubtedly contain bugs and other problems. Please report such in the category textutil of the Tcllib SF Trackers [http://sourceforge.net/tracker/?group_id=12883]. Please also report any ideas for enhancements you may have for either package and/or documentation. SEE ALSO
regexp(n), split(n), string(n) KEYWORDS
TeX, adjusting, formatting, hyphenation, indenting, justification, paragraph, string, undenting textutil 0.7 textutil::adjust(n)
All times are GMT -4. The time now is 03:41 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy