0

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"

1 Answer 1

1

ls -R | grep filename is a little cleaner, but without find, options are limited.

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged .