Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6607677
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T19:31:44+00:00 2026-05-25T19:31:44+00:00

There’s lots of solutions for creating a file level patch for text files and

  • 0

There’s lots of solutions for creating a file level patch for text files and the like. What I’m looking for is an easy script/shell command that will compare oldversion/ newversion/ and give me a tree of files that I need to copy over oldversion to make it be equal to newversion (assuming files are not removed in the updated version). Note that the two folders contain both binary and text files.

Previously, we were using the hack:

fdupes -qrf newversion/ oldversion/ | grep "newversion" | xargs rm;

Leaving us with the folder “newversion” that could be packaged as a patch.

Unfortunately, this turned out to be disastrous because fdupes does not consider filenames.

What’d be great is something like fdupes that actually did include the filename in the comparison.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-25T19:31:44+00:00Added an answer on May 25, 2026 at 7:31 pm

    The diff command can be asked to output filenames which differ.

    diff --quiet --recurse --unidirectional-new-file OLDDIR NEWDIR
    
    Files old/main and new/main differ
    Files old/main.cpp and new/main.cpp differ
    Files old/Makefile and new/Makefile differ
    Files old/sounds/popalien.wav and new/sounds/popalien.wav differ
    Files old/sounds/saucer.wav and new/sounds/saucer.wav differ
    

    Of course, it’s not a nice output, but since you’re only looking for NEW files to package as a patch, a quick sed pipe works wonders:

    diff --quiet --recurse -unidirectional-new-file OLDDIR NEWDIR | \
      sed "s/^.* and \(.*\) differ/\1/"
    

    (broken for readability)

    new/main
    new/main.cpp
    new/Makefile
    new/sounds/popalien.wav
    new/sounds/saucer.wav
    

    Spaces around ‘and’ and preceeding ‘differ’

    The ORDER of the operands to diff makes a difference, first argument is left of ‘ and ‘, second is after. Watch out for that.

    Also, if you delete a file from NEWDIR, this will not find it as given, only added or changed files. To also output filenames for files not found in either subdir, replace the –unidirection-new-file with –new-file. (short options exist for all except –unidirectional..)

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

There is a text file with 1,000,000 lines of code floating around and Ctrl+F
There are a few ways to get class-like behavior in javascript, the most common
For some reason, after submitting a string like this Jack’s Spindle from a text
There are several shading languages available today like GLSL, HLSL, CG, which one to
I am trying to render a haml file in a javascript response like so:
There are many methods to override, like initWithNibname: , awakeFromNib , loadView , viewDidLoad
There are things like f.call(...) f.apply(...) But then there's this (1, alert)('Zomg what is
There are lots of posts on here about moving a folder out of one
I have a reasonable size flat file database of text documents mostly saved in
There are few apps like Strava which records users movements using GPS. It also

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.