Is there a good way to search for a file if you are for ex. stuck in dracut/initrd?
The only thing that I was able to do was: ls /**/**/**/**/* | grep "file name"
ls /**/**/**/**/* | grep "file name"
ls -R | grep filename is a little cleaner, but without find, options are limited.
ls -R | grep filename
find