mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-23 00:02:38 -05:00
11 lines
127 B
Bash
Executable File
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
|