1
0
mirror of https://github.com/qgis/QGIS.git synced 2025-04-08 00:05:32 -04:00
2014-05-18 15:22:32 +02:00

11 lines
127 B
Bash
Executable File

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