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