I wanna get changed parts in .diff files between the modifiied and the original kernel files.
I use diff -b -r -w dir1 dir2
it gives it on command line but I wanna get it in seperate diff extension files.
I wanna get changed parts in .diff files between the modifiied and the original
Share
diff -b -r -w dir1 dir2 >> your_file_name.patch
will save your result.