I am trying to find where index.html is located on my linux server, and was wondering if there was a command to do that. Very new to linux and appreciate any help I can get.
I am trying to find where index.html is located on my linux server, and
Share
Find from root path
find / -name "index.html"Find from current path
find . -name "index.html"