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"

Iluvatar
  • 121
  • 5

1 Answers1

1

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

Michael Hampton
  • 244,070
  • 43
  • 506
  • 972
mikem
  • 418
  • 2
  • 7