9 lines
89 B
Bash
Executable File
9 lines
89 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -ex
|
|
|
|
for _f in $(find . -name "*.rej")
|
|
do
|
|
vim -O ${_f%*.rej} $_f
|
|
done
|