diff options
| author | Carl Hetherington <cth@carlh.net> | 2016-08-26 11:21:54 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2016-08-26 11:21:54 +0100 |
| commit | 9ce33a007d305cec0ebb91dc4839d0d2a05837ab (patch) | |
| tree | 74d6f072b5c14c4ff25fd0d36b47020a55bf7202 /hacks/subdiff | |
| parent | 234623db3306626520e06cac985eb157379eff99 (diff) | |
Hacks.
Diffstat (limited to 'hacks/subdiff')
| -rw-r--r-- | hacks/subdiff | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/hacks/subdiff b/hacks/subdiff new file mode 100644 index 000000000..8c40fb401 --- /dev/null +++ b/hacks/subdiff @@ -0,0 +1,10 @@ +#!/bin/bash + +a=`realpath $1` +b=`realpath $2` +tmp=$$ +mkdir -p $tmp +cd $tmp +asdcp-unwrap $a +asdcp-unwrap $b +diff -u `basename $1 | sed -e "s/\.mxf/_/"` `basename $2 | sed -e "s/\.mxf/_/"` |
