linux - Set Differences of Folders A and B ie |A-B| = C -


how can set of difference of files in folder a not in folder b, should output folder c. other words c contain files not exist in b exist in a? there chain command in linux?

you might use diff(1) command, perhaps diff -naur. btw, patch(1) handy too..

but want version control system (a.k.a. revision control). learn more git. recommend use it, personal small projects.

later, might consider publishing (perhaps most) of code free software, e.g. on github


Comments

Popular posts from this blog

searchKeyword not working in AngularJS filter -

sequelize.js - Sequelize: sort by enum cases -

user interface - how to replace an ongoing process of image capture from another process call over the same ImageLabel in python's GUI TKinter -