diff - Command-line tool to display the differences between two files, or each corresponding file in two directories.
1
vote
1answer
40 views
Compare independent lines in two files [on hold]
I have two files, each with 500k+ user accounts. I need to find the differences between the two (the missing accounts/delta).
Each file is in a simple format, each line contains an email address in ...
0
votes
1answer
27 views
How does the diff command handle caching?
I became curious when I was diffing two large (>326MB) files, and noticed that the second run took much less time than the first. This was frustrating, since I was trying to time the second run, to ...
-3
votes
4answers
78 views
Comparing 2 files
I have the need via a script to compare 2 files contents and if the contents are different then execute another script however is the contents are the same do nothing. I've tried using the DIFF ...
3
votes
1answer
33 views
How to upload a file and then check it and run some other commands using only ssh, cat, and diff in a single SSH session?
The goal is to change some parameters on a lot of devices on connections that are kind of unreliable (wireless)--according to csv that has the format: IP,Parameter,Parameter
I would like to make a ...
1
vote
4answers
60 views
Silent result with two identical files in diff: how to show them?
When I set the -s parameter, diff also print files, that are different.
diff -s $FIRST_FILE $SECOND_FILE
0
votes
0answers
5 views
gtksourceview complains about a missing style - but it's right there
I'm using the meld tool to view some source changes, in C++ and CUDA code. At some point I get the error message:
(meld:19240): GtkSourceView-WARNING **: in file ...
1
vote
2answers
29 views
Color output of linux command similar to 'watch -d' to highlight differences?
I'm at the beginning of shell scripting etc. and a bit challenged to find the proper way of colorzing a command's repeating output, similar to the -d option in the watch command.
I want to see the ...
1
vote
3answers
32 views
diff without including removed content
I'm using diff and patch to patch some files. In my situation, I am not permitted to distribute any of the original file.
Right now, the diffs look something like this:
1c1
< Hello, this is the ...
5
votes
2answers
75 views
Search directories for multi line string
Looking for a way to recursively search a repository for all files containing a multi line string and return the file names that contain it. The paragraph is just a header approx 30 lines.
So I know ...
0
votes
1answer
14 views
diffing two version of software,and do the interdiff
I have got some kind of software in version 1.2.0 (lets call it 120), my colleagues made changes in this software (they created custom module for this software by changing source code of software) ...
0
votes
2answers
30 views
Patching diff-files
I've downloaded a tarballed version of 0.85 "MTR" -> http://www.bitwizard.nl/mtr/
and installed it.
I later saw that a 0.86 diff file exists. I downloaded this in order to patch it, but am confused ...
5
votes
2answers
29 views
diff consuming huge amount of memory and cpu
I have two files, all.txt (525,953,272 records) and subset.txt (525,298,281 records). Each record is nothing but a 17-digit ASCII integer. Both files have been sorted, and duplicate records within ...
0
votes
1answer
38 views
Compare a certain lines from multiple documents
I want to compare a certain lines in a multiple documents. I tried using diff and comm, but the conditions are these,
the documents are in a different working directory/folder, I could use a ...
0
votes
2answers
33 views
What do the numbers in the “@@” line mean in output of diff? [duplicate]
Here is an example of Unix Shell program diff, from Version Control with Git, by Loeliger, 2ed:
Let’s look at the diff in detail.
In the header, the original file is denoted by - - - and ...
8
votes
2answers
59 views
diff characterwise
Is there a stable tool (option/plugin of an existing tool: vimdiff, diff, etc) in Linux to do diff between two text files characterwise?
I would like to see the longest common subsequence between my ...
1
vote
2answers
48 views
Packaging a directory and its contents as a diff patch?
I have a small project folder with text files, which I'd like to post somewhere in order to ask a question on a forum. Let's take, in the simplest case, that I have something like this:
mkdir aaa
cd ...
12
votes
3answers
483 views
diff reports the same line as different in 2 files
I have 2 files containing a list of songs.
hdsongs.txt and sdsongs.txt
I wrote a simple script to list all songs and output to text files, to then run a diff against.
It works fine for the most part, ...
5
votes
2answers
213 views
What is causing `diff` to run `git diff`?
I'd like to use diff as described here and in the documentation I see when I type man diff. However, when I type diff, what I get is this:
~ ❯❯❯ diff
usage: git diff --no-index <path> ...
2
votes
1answer
29 views
Compare two files, while overriding second file's size
I am trying to verify a backup that I made using the following command:
dd if=/dev/sda of=/dev/sdc2
I backed up the contents of /dev/sda (internal hard drive) to
/dev/sdc2 (external backup drive, ...
8
votes
4answers
387 views
Compare two URL lists and print newly added URLs to a new file
I am initially producing two files which contain lists of URLs—I will refer to them as old and new. I would like to compare the two files and if there are any URLs in the new file which are not in the ...
1
vote
2answers
50 views
Find values in a file from another file
I know, the title is not clear. I have 2 files, in one of this I have some values and I need to find them in another file. Instead to grep for each single value, I would use the first file to do ...
2
votes
2answers
89 views
How can I check if a directory contains the same files of a TAR archive?
Let's say I have a folder Documents and a TAR file Documents.tar, how to check if the tar file contains the same files that are present in the directory?
The more obvious solution to me would be to ...
1
vote
1answer
34 views
Diff command with file type exceptions
While comparing 2 fairly big directories using diff -rq .... I want to exclude certain file types like 'tar.gz' or 'error_log'.
How do I do that?
1
vote
3answers
67 views
Compare two file contents horizontally and vertically
I have two files:
File1 has the below contents:
1 2 3 4 5 6 7 8 10
File2 has the below contents:
1
2
3
4
5
6
7
8
9
10
How can I find the difference between two files and print the odd number ...
2
votes
2answers
102 views
Was 'diff' included in the first version of Linux
What is the list of programs that were available in the first public version of Linux distribution (not just kernel)? I am specially concerned when this distribution was released and if diff utility ...
2
votes
1answer
1k views
How to fix “Hunk #1 FAILED at 1 (different line endings)” message?
I am trying to create a patch with the command
git diff sourcefile >/var/lib/laymab/overlay/category/ebuild/files/thepatch.patch
when I apply the patch, it gives me
$ patch -v
GNU patch 2.7.5
...
2
votes
2answers
35 views
git --diff like command for Linux local dirs
dir1 has 1 file and dir2 has 2 files as below:
/tmp$ ls dir1
file1
/tmp$ cat dir1/file1
line1
line2
line3
/tmp$ ls dir2
file1 file2
/tmp$ cat dir2/file1
line1
/tmp$ cat dir2/file2
line1
/tmp$ diff ...
1
vote
3answers
281 views
How to pipe output of find as input for diff?
This is a basic question regarding bash but I could not find a solution.
I have many subdirectories with identically named files and I want to compare all of them for identity.
I can return list of ...
2
votes
1answer
141 views
How to apply simple patch (reverse detected)
I'm trying to create and apply a simple patch to fix a bug with gradle.
I copy the file (/usr/bin/gradle) to my working directory, then make the change. I then create the patch:
diff -u ...
2
votes
2answers
195 views
Applying a diff patch
I've never patched anything in Linux, and I can't exactly figure out what the guy who wrote this post (second paragraph) means. That target source is qemu from github and the changes to apply are:
...
1
vote
2answers
111 views
Comparing directories using diff
I'm trying to compare two directories that contain binary files, on AIX 6. I'm using diff in preference to dircmp, as I'm trying to maintain a consistent output format between this and my Linux ...
3
votes
3answers
79 views
Rebuild original file from diff files to save disk space
Every day 10GB text file is downloaded, the file is ~200 million lines and ~1% of the lines are changed the next day. I want to keep daily files as backup, but I'm trying to save disk space by using ...
17
votes
5answers
1k views
Why use diff/patch when it is easier to just use cp
diff -u file1.txt file2.txt > patchfile
creates a patch file which consists of instruction for patch to convert file1.txt to be exactly like file2.txt
As the title says, Can't this be done using ...
2
votes
3answers
257 views
Difference between files in directory
I have two directories with same files but with some difference in their contents. I want to list down those files which are differing. For example
There are two folders Folder1 and Folder2 with ...
4
votes
1answer
160 views
Pass BASH array to diff like file contents
I have two bash arrays, say:
arr1=( 1 2 3 )
arr2=( 1 2 A )
and I want to compare them using diff. How could I pass the arrays as if they were the contents of a file?
I tried a few variations, but ...
2
votes
2answers
163 views
Find differences in file and sorting file by key
So I have two language files, english and french. They are in this format:
key=translation
An example in English would be:
ui.title=My Title
And in French:
ui.title=Mon Titre
So I need a ...
-1
votes
3answers
206 views
Difference between two files
I have two files , say a & b. I want to compare both the files and get the differences in the third file along with the file name. Can anyone help me out with a simple command.
0
votes
1answer
374 views
blessdiff for the “full featured hexadecimal editor”?
I am trying to find some hex diftool which allows me to compare to documents in the view but also the internal differences like in bless so two bless windows side-by-side but with diff capability ...
0
votes
1answer
122 views
how to pipe output from git commands into unix diff utility?
I am trying to achieve something along the lines of
diff -ywB --suppress-common-lines `git branch --merged prod-server` `git branch --merged test-server`
so that I can know the difference of what ...
5
votes
0answers
96 views
Display only relevant hunks of a diff/patch based on a regexp
git log -G<regex> -p is a wonderful tool to search a codebase's history for changes that match the specified pattern. However, it can be overwhelming to locate the relevant hunk in the ...
1
vote
2answers
38 views
How do I generate diffs for a series of files?
I have a series of a few thousand files, all with filenames in order, so let's say file1.x, file2.x, file3.x, etc. All these files are in the same directory.
I know how to generate a diff from ...
2
votes
1answer
44 views
Using diff to show both contents of new files and that new empty files are created [duplicate]
After executing these 4 commands, directory "a" has file "1" with contents "test" and file "2" which is empty, and directory "b" is empty.
$ mkdir a
$ mkdir b
$ echo test > a/1
$ touch a/2
We ...
17
votes
2answers
378 views
How do I save the changes to my vim buffer as a patch file?
Is there a way to save the changes I made to my vim buffer as a patch file for the original file, without saving it as a separate file and using diff?
2
votes
2answers
53 views
What optimized tools are available for comparing directory contents?
I am mirroring a Subversion repository tag with svn2git and I want to be sure that when I checkout particular revisions, those I obtain from the git mirror match those from Subversion. My main problem ...
0
votes
2answers
108 views
How to turn Diff command into bash script with prompt
I have a list that i've copy and i want to paste it to the shell to give me just the repeated lines.
1
1
3
2
As i read about bash commands i've maded this:
cat > /tmp/sortme ...
1
vote
1answer
125 views
gzip files with cat and from pipe gives different results
Why does this give such output (both commands are supposed to do the same thing) and how can one make them give identical output?
diff <(cat some_file | gzip -c - | base64) <(gzip -c some_file ...
2
votes
2answers
268 views
How to compare two directories thoroughly without git?
Here thoroughly means “list all differ files, find those files with same name and different content, list the difference of content”.
Before I got a lazy solution, git init one directory and copy ...
3
votes
1answer
4k views
Patch command - can't find file to patch at input line
I generated patch using diff command with the number of context lines as 1 (-c option). My patch file contents:
*** /home/sk/abc/def/src/klm/a.py 2015-05-18 16:25:50.348398554 +0530
--- ...
1
vote
2answers
56 views
Getting the diff of a package update
Before (or after) updating a package with apt-get update, how can I view the source code diff between the the new and the old version?
2
votes
1answer
146 views
Diff of directory statistics sumarry (git diff --stat like for non-git repo)
Is there a tool (or diff option combination) which would produce output similar to git diff --stat?
I have two kernel sources and I would like to get general idea of what was changed in them. ...