I trying to get a USB webcam working and I found the advise to see webcamd.log. After far too long I came to the conclusion it doesn't exist.
Can somebody explain a way to unconditionally find a file if it exists?
I googled and found this syntax - find / -name "webcamd.log" which is supposed to search for that file from the root but it errors "Invalid argument". I even tried to find a file that does exist but same error.
BTW I'm using SSH from Putty on Win7 x64
I fear the only option is either sucide or introduce Pi to double glassing at high v
refers to the quotes in your command. The syntax which works is:
find / -name octoprint.log
Note that doing a find starting at the root of the filesystem will result is lots of Permission denied so you might want to sudo find / -name octoprint.log instead.