dotfiles/.bin/OLD/vimdiff-rej
2024-02-14 07:55:58 +01:00

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