very tiny script to remove tabs and trailing whitespace from patches
authorMichael Niedermayer <michaelni@gmx.at>
Thu, 26 May 2005 12:58:54 +0000 (12:58 +0000)
committerMichael Niedermayer <michaelni@gmx.at>
Thu, 26 May 2005 12:58:54 +0000 (12:58 +0000)
Originally committed as revision 4310 to svn://svn.ffmpeg.org/ffmpeg/trunk

clean-diff [new file with mode: 0755]

diff --git a/clean-diff b/clean-diff
new file mode 100755 (executable)
index 0000000..6964d34
--- /dev/null
@@ -0,0 +1,2 @@
+#!/bin/sh
+sed '/^+[^+]/!s/       /TaBBaT/g' | expand -t `seq -s , 9 8 200` | sed 's/TaBBaT/      /g' | sed '/^+[^+]/s/ * $//'
\ No newline at end of file