Tagged Questions
3
votes
1answer
52 views
VIM - Passing colon-commands list via command-line
Good day,
I am writing a simple script within my BASHRC file to accommodate something I couldn't quite resolve in a previous question:
Side-by-side view in Vim of svn-diff for entire directory
I ...
1
vote
1answer
35 views
How to make git diff ignore comments
I am trying to produce a list of the files that were changed in a specific commit. The problem is, that every file has the version number in a comment at the top of the file - and since this commit ...
0
votes
2answers
37 views
How to redirect output of command to diff
I am trying to write a loop, and this doesn't work:
for t in `ls $TESTS_PATH1/cmd*.in` ; do
diff $t.out <($parser_test `cat $t`)
# Print result
if [[ $? -eq 0 ]] ; then
printf "$t ** ...
0
votes
2answers
52 views
Shell test for “images are different”?
In a shell script, I would like to check whether two PNG images are different in the sense that either the images have different sizes or at least one pixel of one image has a different RGBA than the ...
2
votes
4answers
73 views
Bash: tell if a file is included in another
I'm trying to compare the content of two files and tell if the content of one is totally included in another (meaning if one file has three lines, A, B and C, can I find those three lines, in that ...
1
vote
3answers
36 views
vimdiff files given in a text file
I have a text file files.txt with following entries
"/home/dilawar/a.txt","/home/dilawar/b.txt"
"/home/dilawar/aa.txt","/home/dilawar/bb.txt"
Now I wish to see the diff of files on line 1. I tried ...
1
vote
4answers
83 views
How to get the difference (only additions) between two files in linux
I have two files A1 and A2 (unsorted). A1 is previous version of A2 and some lines have been added to A2. How can I get the new lines that are added to A2?
Note: I just want the new lines added and ...
1
vote
1answer
118 views
Bash Script exiting without error while using diff
I'm fairly new to using bash and was trying to create an autograder script for running some test cases. Currently my bash script seems to be acting strangely; when I have the -e flag set bash will ...
-1
votes
1answer
144 views
String comparison (structured text) in bash
I need to compare two files (new.txt and old.txt) with a following structure:
<Field1>,<Field2>,<Field3>,<Field4>,<Field5>,<Field6>
The common lines must be ...
0
votes
1answer
28 views
Given two directories, how can I know which subdirectories differ?
I had two directories, directory and directory.original. I want to know which sub-directories are different to create a patch from each different directory instead one big patch.
2
votes
4answers
62 views
Check for directory modifications using diff
I'm getting started with bash-scripting and I am currently writing a script to backup a directory if the directory was modified since the last time it was backed-up . I am using the diff command to ...
0
votes
1answer
64 views
What are some tkdiff shortcuts? [closed]
I've discovered that 'n' will take you to the next diff, and 'p' to the previous one, and 'enter' to the nearest one. Any others?
3
votes
2answers
44 views
Compare execution log's ignoring the execution times
I'm new on linux SO and bash commands and i think someone with more experience could help me. I wanna compare 2 different text files with log's of an execution, but some lines (not all of them) begin ...
0
votes
0answers
85 views
Diff two CSVs, make third with results of diff to a third CSV?
Basically what I am trying to do is take a csv that I generated via AWK, and compare it to the CSV created from the last time I ran the script (which becomes ./export_files/"TT_MagentoImport_"$(date ...
0
votes
1answer
54 views
Show diff between two files in specific format
here is the question: I have two files:
file1:
aaa
bbb
ccc
ddd
file2:
bbb
ddd
HOW TO USE DIFF TO GET THIS OUTPUT (only differences)
aaa
ccc
2
votes
2answers
293 views
compare content of two variables in bash
I have a variable $data and variable $file in a bash script:
data=$(echo "$(printf '%s\n' "${array[@]/%/$'\n\n'}")")
file=$(<scriptfile_results)
Those variables will contain text. How to compare ...
2
votes
3answers
103 views
space/tab/newline insensitive comparison
Suppose I have these two files:
File 1:
1 2 3 4 5 6 7
File 2:
1
2
3
4
5
6
7
Is it possible to use diff to compare these two files so that the result is equal ?
(Or if not, what are other tools ...
1
vote
2answers
142 views
Extract modified and added lines from two csv files using shell or diff command
I have two csv files F1 and F2 having rows in same order, I want to extract changed/added lines by comparing files F1 and F2 from F2.
I tried diff command but i could see the change. How could i read ...
0
votes
1answer
128 views
Better way of extracting data from file for comparison
Problem: Comparison of files from Pre-check status and Post-check status of a node for specific parameters.
With some help from community, I have written the following solution which extracts the ...
0
votes
1answer
256 views
diff -r: limit recursion?
Is there a way to specify the maximum recursion level for recursive diff diff -r (to compare two directories)?
What I'm trying to do is compare two projects on github (one was branched from another). ...
2
votes
2answers
491 views
Compare two files ignoring order
I have two files which the order of lines is irrelevant, and I want to compare its content.
I looked into diff documentation but could not find anything like --ignore-order.
Any tips?
PS:$ didn't ...
1
vote
1answer
56 views
How would I make this work?
#!/bin/bash
#James Kenaley 20120513
#Server Monitor Script
while read -r name ip content
do
ip_status=`ping -w1 $ip | grep -c "100%"`
web_status=`nmap -n -PN -p 80 $ip | grep -c open`
...
3
votes
4answers
161 views
checking equality of a part of two files
Is it possible to check if first line of two files is equal using diff(or another easy bash command)?
[Generally checking equality of first/last k lines, or even lines i to j]
0
votes
2answers
185 views
compare two files containing doubles
I want to check equality of two files containing double numbers.
I should consider near numbers equal e.g. differences of at most 0.0001.
It's easy to write a tester for that with C but is there an ...
1
vote
2answers
1k views
How to display only different rows using diff (bash)
How can I display only different rows using diff in a separate file?
For example, the file number 1 contains the line:
1;john;125;3
1;tom;56;2
2;jack;10;5
A file number 2 contains the following ...
1
vote
4answers
144 views
different lines in two files when ignoring last column - in bash
I have two files, smaller and bigger and bigger contains all lines of smaller. Those lines are almost same, just last column differs.
file_smaller
A NM 0
B GT 4
file_bigger
A NM 5 <-same as ...
0
votes
2answers
246 views
given two directory trees how to find which files are the same?
I am writing a bash script, and I would like to know which files are the same in two directory trees.
It would be the opposite of using diff.
Well i found the answer myself. I had tried it before, ...
3
votes
5answers
588 views
Use pipe of commands as argument for diff
I am having trouble with this simple task:
cat file | grep -E ^[0-9]+$ > file_grep
diff file file_grep
Problem is, I want to do this without file_grep
I have tried:
diff file `cat file | grep ...
1
vote
2answers
650 views
diff two files and keep just new or changed lines
I would like to write a bash script or a few shell commands that solves my problem. I have two files, old.txt, new.txt. I would like to produce a file, diff.txt, that has only the lines that have ...
1
vote
2answers
289 views
diff on strings, not lines
I feel I should be able to do this in my sleep, but let's say I have two text files each of which has a single column of the names of apache modules in no particular order. One file has 46 unique (to ...
0
votes
1answer
80 views
mysqlworkbench without root access
I have a full normal user account for ssh access and I'd like to use the mysql diff capability of mysqlworkbench's mysqldbcompare (or some other cli tool if it exists). The problem is I don't have ...
1
vote
1answer
393 views
diff ignore comment
I'm trying to compare 2 different apaches config directories.
But I want to avoid the difference between versions. For example I'm going to compare between 2.2.20 and 2.2.21.
This what I have so ...
1
vote
4answers
115 views
Diff which folders are missing
I have two folders each which contain a lot of subfolders. Most of the files and folders should be the same, but I want to be able to figure out which folders are missing.
For example:
Folder1/
...
10
votes
3answers
285 views
*nix: perform set union/intersection/difference of lists
I sometimes need to compare two text files. Obviously, diff shows the differences, it also hides the similarities, which is kind of the point.
Suppose I want to do other comparisons on these files: ...
0
votes
1answer
454 views
One-way diff file
I would like to generate diffs for the sake of doing incremental backups of an sql database.
Using the standard unix 'diff' tool generates unnecessarily large files, since they include the full text ...
2
votes
2answers
294 views
Bash “diff” utility showing files as different when using a regex Ignore
I'm trying to use the bash utility "diff" that is documented here: http://ss64.com/bash/diff.html. Note that I'm using a windows-ported version of the bash utility, but that shouldn't make any ...
3
votes
2answers
720 views
find files not in a list
I have a list of files in file.lst.
Now I want to find all files in a directory dir which are older than 7 days, except those in the file.lst file. How can I either modify the find command or remove ...
5
votes
2answers
3k views
What are the error exit values for diff?
On the diff man-page I've found these exit values:
0 No differences were found.
1 Differences were found.
>1 An error occurred.
Are there different exit values above 1 ...
0
votes
2answers
2k views
shell script to compare directories recursively
I have a file server backup on an external hard drive a few months old for a file server that went down since then. Most of the data was recovered onto a temporary file server thats been in use since ...
11
votes
5answers
11k views
Diff A Directory Recursively, Ignoring All Binary Files:
Working on a Fedora Constantine box. I am looking to diff two directories recursively to check for source changes. Due to the setup of the project (prior to my own engagement with said project! sigh), ...
1
vote
3answers
167 views
Diff + patch - Sum instead of replace
Say I have a file A, which contains this:
a = 5
And a file B, like this:
b = 5
Now, it's obvious that diff will produce something like this (the patch):
1c1
< a = 5
---
...
0
votes
1answer
63 views
Comparison script help
I'm trying to write a Bash script that will go through a set of directories for a cache and make some comparisons on the contents. (I want to find the two that have the smallest differences for ...
0
votes
3answers
164 views
Bash - Diff change header (name of files)
I am creating .patch file from diff diff -u $i /tmp/b/${i#/tmp/a/} > /tmp/patch/$j.patch and I want to ask how can I change the names of files in header of each patch file. Now I have /tmp/a/... ...
1
vote
3answers
1k views
Compare all file sizes of 2 directories in bash
Sometimes it happens that for some reason the process of copying many files (i.e. to external HDD; using Nautilus file manager) crashes. If I then start it again, I use to ignore already existing ...
3
votes
1answer
981 views
recursive diff is extremely slow - checking contents of directories
hey guys,
i am running a diff on two directories, recursively, with a few options. the directories are somewhat large, however, i am trying to just see the differences in the contents of folders, not ...
24
votes
2answers
7k views
Given two directory trees, how can I find out which files differ?
If I want find the differences between two directory trees, I usually just execute:
diff -r dir1/ dir2/
This outputs exactly what the differences are between corresponding files. I'm interested in ...
4
votes
3answers
2k views
How to ignore some differences in diff command?
diff has an option -I regexp, which ignores changes that just insert or delete lines that match the given regexp. I need an analogue of this for the case, when changes are between two lines (rather ...
9
votes
2answers
1k views
Diff output from two programs without temporary files
Say I have too programs a and b that I can run with ./a and ./b.
Is it possible to diff their outputs without first writing to temporary files?
9
votes
3answers
5k views
Bash: using a the result of a diff in a if statement
I am writing a simple Bash script to detect when a folder has been modified.
It is something very close to:
ls -lR $dir > a
ls -lR $dir > b
DIFF=$(diff a b)
if [ $DIFF -ne 0 ]
then
echo ...
2
votes
3answers
1k views
Bash scripting know the result of a command
I am writing a bash script to run an integration test of a tool I am writing.
Basically I run the application with a set of inputs and compare the results with expected values using the diff command ...