I have the follow directory structure
./goodboys/a.txt
./goodboys/b.txt
./badboys/a.txt.boy
./badboys/b.txt.boy
I am using zsh. I want to diff all *.txt in goodboys with *.txt.boy in badboys.
I am not looking for all possible diffs, I need diffs between ./goodboys/a.txt and ./badboys/a.txt.boy ./goodboys/b.txt and ./badboys/b.txt.boy
Thanks in advance.