7 lines
120 B
Plaintext
7 lines
120 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
for f in $(find . -type f -name "*.rej")
|
||
|
do
|
||
|
vimdiff -c':set noscb' -c':set nocursorbind' $f ${f%.*}
|
||
|
done
|