vote up 3 vote down star
1

I'm looking for a simple way to find the longest line in a file. Ideally, it would be a simple bash shell command instead of a script.

flag

75% accept rate
google.com with "Longest line in a file" give you the anwser. I give you the sources. – Nadir SOUALEM Oct 31 at 20:57

5 Answers

vote up 2 vote down check

Here are references of the anwser

cat filename | awk '{print length, $0}'|sort -nr|head -1

http://wtanaka.com/node/7719

link|flag
1  
That second awk script will only tell you the longest length, not show the longest line. – rsp Oct 31 at 21:11
Come on..These are same as the first two answers added with the references. – Ravi Nov 2 at 17:33
I just add references – Nadir SOUALEM Nov 2 at 18:06
@rsp: i kill the second anwser – Nadir SOUALEM Nov 2 at 18:08
vote up 7 vote down
awk '{ if (length($0) > max) {max = length($0); maxline = $0} } END { print maxline }'  YOURFILE
link|flag
1  
The example was taken from the awk manual (imagine that!) and modified to print the actual line instead of the length of the longest line. – Ramon Oct 31 at 22:17
vote up 4 vote down
cat filename|awk '{print length, $0}'|sort -nr|head -1

For reference : Finding the longest line in a file

link|flag
Why the extra cat command? Just give the file name directly as an argument to awk. – Thomas Padron-McCarthy Oct 31 at 21:40
@Thomas. Expressing it as a pipe is more general than specifying a file as an option. In my case, I'll be using output piped from a database query. – drewster Oct 31 at 23:31
vote up 1 vote down

In perl:

perl -ne 'print ($l = $_) if (length > length($l));' filename | tail -1

this only prints the line, not its length too.

link|flag
vote up 0 vote down

Variation on the theme.

This one will show all lines having the length of the longest line found in the file, retaining the order they appear in the source.

FILE=myfile grep `tr -c "\n" "." < $FILE | sort | tail -1` $FILE

So myfile

x
mn
xyz
123
abc

will give

xyz
123
abc
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.