print lines if comma seperated fields matching together in another line [duplicate]

The name of the pictureThe name of the pictureThe name of the pictureClash Royale CLAN TAG#URR8PPP











up vote
-2
down vote

favorite













This question already has an answer here:



  • How do I print all lines of a file with duplicate values in a certain column

    7 answers



Input:



1,1,10,1
2,1,10,3
3,0,10,1


Expected Output:



1,1,10,1
2,1,10,3


So how to print lines if field number 2 and 3 repeated in another line.










share|improve this question















marked as duplicate by Sundeep, msp9011, Isaac, slm♦ Aug 23 at 21:38


This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.














  • Will those be adjacent lines, or scattered all over the place?
    – RudiC
    Aug 23 at 16:24














up vote
-2
down vote

favorite













This question already has an answer here:



  • How do I print all lines of a file with duplicate values in a certain column

    7 answers



Input:



1,1,10,1
2,1,10,3
3,0,10,1


Expected Output:



1,1,10,1
2,1,10,3


So how to print lines if field number 2 and 3 repeated in another line.










share|improve this question















marked as duplicate by Sundeep, msp9011, Isaac, slm♦ Aug 23 at 21:38


This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.














  • Will those be adjacent lines, or scattered all over the place?
    – RudiC
    Aug 23 at 16:24












up vote
-2
down vote

favorite









up vote
-2
down vote

favorite












This question already has an answer here:



  • How do I print all lines of a file with duplicate values in a certain column

    7 answers



Input:



1,1,10,1
2,1,10,3
3,0,10,1


Expected Output:



1,1,10,1
2,1,10,3


So how to print lines if field number 2 and 3 repeated in another line.










share|improve this question
















This question already has an answer here:



  • How do I print all lines of a file with duplicate values in a certain column

    7 answers



Input:



1,1,10,1
2,1,10,3
3,0,10,1


Expected Output:



1,1,10,1
2,1,10,3


So how to print lines if field number 2 and 3 repeated in another line.





This question already has an answer here:



  • How do I print all lines of a file with duplicate values in a certain column

    7 answers







text-processing awk sed






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Aug 23 at 13:55

























asked Aug 23 at 13:49









αԋɱҽԃ αмєяιcαη

417419




417419




marked as duplicate by Sundeep, msp9011, Isaac, slm♦ Aug 23 at 21:38


This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.






marked as duplicate by Sundeep, msp9011, Isaac, slm♦ Aug 23 at 21:38


This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.













  • Will those be adjacent lines, or scattered all over the place?
    – RudiC
    Aug 23 at 16:24
















  • Will those be adjacent lines, or scattered all over the place?
    – RudiC
    Aug 23 at 16:24















Will those be adjacent lines, or scattered all over the place?
– RudiC
Aug 23 at 16:24




Will those be adjacent lines, or scattered all over the place?
– RudiC
Aug 23 at 16:24










1 Answer
1






active

oldest

votes

















up vote
1
down vote



accepted










Quick'n'dirty method (requiring two passes over the file, the first to count occurrences of $2,$3, and the second to print whenever the field combination is non-unique):



$ awk -F, 'NR==FNRa[$2 FS $3]++; next a[$2 FS $3] > 1' file file
1,1,10,1
2,1,10,3





share|improve this answer






















  • @Sundeep thanks, good catch
    – steeldriver
    Aug 23 at 15:37










  • the only bad thing it's not showing the duplicate lines under together on big file. but it's did the job ! can i sort based on second and third field to appear under together?
    – Î±Ô‹É±Ò½Ôƒ αмєяιcαη
    Aug 23 at 15:41










  • I've done it by adding sort -t, -k2 . thanks a lot.
    – Î±Ô‹É±Ò½Ôƒ αмєяιcαη
    Aug 23 at 15:43

















1 Answer
1






active

oldest

votes








1 Answer
1






active

oldest

votes









active

oldest

votes






active

oldest

votes








up vote
1
down vote



accepted










Quick'n'dirty method (requiring two passes over the file, the first to count occurrences of $2,$3, and the second to print whenever the field combination is non-unique):



$ awk -F, 'NR==FNRa[$2 FS $3]++; next a[$2 FS $3] > 1' file file
1,1,10,1
2,1,10,3





share|improve this answer






















  • @Sundeep thanks, good catch
    – steeldriver
    Aug 23 at 15:37










  • the only bad thing it's not showing the duplicate lines under together on big file. but it's did the job ! can i sort based on second and third field to appear under together?
    – Î±Ô‹É±Ò½Ôƒ αмєяιcαη
    Aug 23 at 15:41










  • I've done it by adding sort -t, -k2 . thanks a lot.
    – Î±Ô‹É±Ò½Ôƒ αмєяιcαη
    Aug 23 at 15:43














up vote
1
down vote



accepted










Quick'n'dirty method (requiring two passes over the file, the first to count occurrences of $2,$3, and the second to print whenever the field combination is non-unique):



$ awk -F, 'NR==FNRa[$2 FS $3]++; next a[$2 FS $3] > 1' file file
1,1,10,1
2,1,10,3





share|improve this answer






















  • @Sundeep thanks, good catch
    – steeldriver
    Aug 23 at 15:37










  • the only bad thing it's not showing the duplicate lines under together on big file. but it's did the job ! can i sort based on second and third field to appear under together?
    – Î±Ô‹É±Ò½Ôƒ αмєяιcαη
    Aug 23 at 15:41










  • I've done it by adding sort -t, -k2 . thanks a lot.
    – Î±Ô‹É±Ò½Ôƒ αмєяιcαη
    Aug 23 at 15:43












up vote
1
down vote



accepted







up vote
1
down vote



accepted






Quick'n'dirty method (requiring two passes over the file, the first to count occurrences of $2,$3, and the second to print whenever the field combination is non-unique):



$ awk -F, 'NR==FNRa[$2 FS $3]++; next a[$2 FS $3] > 1' file file
1,1,10,1
2,1,10,3





share|improve this answer














Quick'n'dirty method (requiring two passes over the file, the first to count occurrences of $2,$3, and the second to print whenever the field combination is non-unique):



$ awk -F, 'NR==FNRa[$2 FS $3]++; next a[$2 FS $3] > 1' file file
1,1,10,1
2,1,10,3






share|improve this answer














share|improve this answer



share|improve this answer








edited Aug 23 at 15:37

























answered Aug 23 at 15:28









steeldriver

32.2k34979




32.2k34979











  • @Sundeep thanks, good catch
    – steeldriver
    Aug 23 at 15:37










  • the only bad thing it's not showing the duplicate lines under together on big file. but it's did the job ! can i sort based on second and third field to appear under together?
    – Î±Ô‹É±Ò½Ôƒ αмєяιcαη
    Aug 23 at 15:41










  • I've done it by adding sort -t, -k2 . thanks a lot.
    – Î±Ô‹É±Ò½Ôƒ αмєяιcαη
    Aug 23 at 15:43
















  • @Sundeep thanks, good catch
    – steeldriver
    Aug 23 at 15:37










  • the only bad thing it's not showing the duplicate lines under together on big file. but it's did the job ! can i sort based on second and third field to appear under together?
    – Î±Ô‹É±Ò½Ôƒ αмєяιcαη
    Aug 23 at 15:41










  • I've done it by adding sort -t, -k2 . thanks a lot.
    – Î±Ô‹É±Ò½Ôƒ αмєяιcαη
    Aug 23 at 15:43















@Sundeep thanks, good catch
– steeldriver
Aug 23 at 15:37




@Sundeep thanks, good catch
– steeldriver
Aug 23 at 15:37












the only bad thing it's not showing the duplicate lines under together on big file. but it's did the job ! can i sort based on second and third field to appear under together?
– Î±Ô‹É±Ò½Ôƒ αмєяιcαη
Aug 23 at 15:41




the only bad thing it's not showing the duplicate lines under together on big file. but it's did the job ! can i sort based on second and third field to appear under together?
– Î±Ô‹É±Ò½Ôƒ αмєяιcαη
Aug 23 at 15:41












I've done it by adding sort -t, -k2 . thanks a lot.
– Î±Ô‹É±Ò½Ôƒ αмєяιcαη
Aug 23 at 15:43




I've done it by adding sort -t, -k2 . thanks a lot.
– Î±Ô‹É±Ò½Ôƒ αмєяιcαη
Aug 23 at 15:43


Popular posts from this blog

How to check contact read email or not when send email to Individual?

Bahrain

Postfix configuration issue with fips on centos 7; mailgun relay