QGIS/scripts/sipdiff

11 lines
127 B
Plaintext
Raw Normal View History

#!/bin/bash
for file in $*; do
d=${file#*/}
d=${d%/*}
f=${file##*/}
f=${f%.*}
vimdiff src/$d/$f.h python/$d/$f.sip
done