I've source code files (Java and C++) to recover from a broken RAID 1+0 array, I've been able to access the virtual drive with an other server but the ReiserFS partition can't be recovered with ReiserFS tools.
I've made a binary image of the partition using DD, now I'm wondering if there is a tool better than GREP to find files using tags contained in files ex.:
WatchDog.cpp that must contain "class WatchDog..."
grep -a -B20 -A1000 'class WatchDog' BACKUP.img | strings > recovered.txt
I was thinking about some kind of REGEX tool that can find these files with a pattern as this is programming code!
Thank you for your help!