Unix text processing

Clash Royale CLAN TAG#URR8PPP
up vote
0
down vote
favorite
2 text files. I have to find the uniq values from the 2 text files and take the output in 3rd file with the filename along with uniq values.
For eg
a.txt
1
4
3
b.txt
2
1
7
Output
File.out
b.txt 2
a.txt 3
a.txt 4
b.txt 7
I tried the below command
Cat a.txt b.txt | sort | uniq -u >>file.out
But it is printing only values, not getting file names
text-processing text
New contributor
Kumar is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
add a comment |Â
up vote
0
down vote
favorite
2 text files. I have to find the uniq values from the 2 text files and take the output in 3rd file with the filename along with uniq values.
For eg
a.txt
1
4
3
b.txt
2
1
7
Output
File.out
b.txt 2
a.txt 3
a.txt 4
b.txt 7
I tried the below command
Cat a.txt b.txt | sort | uniq -u >>file.out
But it is printing only values, not getting file names
text-processing text
New contributor
Kumar is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
Can you explain how to determine the order of lines in the output file? Sorted numerically?
â Mark Plotnick
4 mins ago
add a comment |Â
up vote
0
down vote
favorite
up vote
0
down vote
favorite
2 text files. I have to find the uniq values from the 2 text files and take the output in 3rd file with the filename along with uniq values.
For eg
a.txt
1
4
3
b.txt
2
1
7
Output
File.out
b.txt 2
a.txt 3
a.txt 4
b.txt 7
I tried the below command
Cat a.txt b.txt | sort | uniq -u >>file.out
But it is printing only values, not getting file names
text-processing text
New contributor
Kumar is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
2 text files. I have to find the uniq values from the 2 text files and take the output in 3rd file with the filename along with uniq values.
For eg
a.txt
1
4
3
b.txt
2
1
7
Output
File.out
b.txt 2
a.txt 3
a.txt 4
b.txt 7
I tried the below command
Cat a.txt b.txt | sort | uniq -u >>file.out
But it is printing only values, not getting file names
text-processing text
text-processing text
New contributor
Kumar is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
New contributor
Kumar is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
New contributor
Kumar is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
asked 10 mins ago
Kumar
1
1
New contributor
Kumar is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
New contributor
Kumar is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
Kumar is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
Can you explain how to determine the order of lines in the output file? Sorted numerically?
â Mark Plotnick
4 mins ago
add a comment |Â
Can you explain how to determine the order of lines in the output file? Sorted numerically?
â Mark Plotnick
4 mins ago
Can you explain how to determine the order of lines in the output file? Sorted numerically?
â Mark Plotnick
4 mins ago
Can you explain how to determine the order of lines in the output file? Sorted numerically?
â Mark Plotnick
4 mins ago
add a comment |Â
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
Kumar is a new contributor. Be nice, and check out our Code of Conduct.
Kumar is a new contributor. Be nice, and check out our Code of Conduct.
Kumar is a new contributor. Be nice, and check out our Code of Conduct.
Kumar is a new contributor. Be nice, and check out our Code of Conduct.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f479614%2funix-text-processing%23new-answer', 'question_page');
);
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Can you explain how to determine the order of lines in the output file? Sorted numerically?
â Mark Plotnick
4 mins ago