QGIS/scripts/sipdiff

13 lines
137 B
Plaintext
Raw Normal View History

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