Changes between Version 1 and Version 2 of VersionDiff
- Timestamp:
- Apr 25, 2007, 9:17:59 PM (18 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
VersionDiff
v1 v2 1 I don't know if people are aware of it. If not, here is a simple trick to 2 see 'what has changed' between two versions of an executable: 3 {{ 1 I don't know if people are aware of it. If not, here is a simple trick to see 'what has changed' between two versions of an executable: 2 {{{ 4 3 ident first_executable_version second_executable_version | sort | uniq -u 5 }} 4 }}} 6 5 For example: 7 {{ 6 {{{ 8 7 ident db_purge /root/ballen/boinc/sched/db_purge | sort | uniq -u 9 8 $Id: version_diff.txt,v 1.2 2005/01/18 23:35:50 davea Exp $ 10 9 $Id: version_diff.txt,v 1.2 2005/01/18 23:35:50 davea Exp $ 11 }} 12 I find this very helpful in reviewing what has been modified in the various 13 BOINC daemons, when updating versions. 10 }}} 11 I find this very helpful in reviewing what has been modified in the various BOINC daemons, when updating versions.