View Single Post
Posts: 32 | Thanked: 19 times | Joined on Apr 2012 @ Germany
#1231
I think that should be no problem. But in any case, you can make a backup before:
Code:
cd .config
cp user-dirs.dir user-dirs.dir.bak
You are comfortable with the command line, I hope...

I don't use Whatszap, so do you know where the picture is saved to? If not, you can try
Code:
cd
find . -name "saved.jpg" 2> /dev/null
if you know the name of the image, if not try
Code:
cd
find . -mtime 0 2> /dev/null | xargs ls -trd
which lists all files modified in the last 24 hours, sorted by time, newest at bottom. The command may take some time to display any output!

Last edited by mpy; 2013-01-10 at 13:49. Reason: Sorry, now everything should be correct... also for busybox.