How can I diff 2 SQLite files?
问题 Using SQLite-manager (in its XUL form) on a Mac. How can I diff a SQLite file from one submitted by someone else on the team, and incorporate his changes? Thanks. 回答1: I believe you could use the following, in combination: $ diff sqlite-file-1.sql sqlite-file-2.sql > sqlite-patch.diff $ patch -p0 sqlite-file-1.sql sqlite-patch.diff I hope that works for you. Otherwise, I highly suggest consulting the man-pages: $ man diff $ man patch EDIT: Alright, here's the whole walk-through. First, dump