I need to search a file in unix which starts with "catalina"
find ... what to be used effectively -name, -exec ? Whats the expression
Also I need to show few files at a time, then show some more. There are huge set of log files in there. I know there is some expression, but forgot...
find /path/to/search/in -name 'catalina*'Use
inameto match case-insensitively.To not be overwhelmed with a long list of files, filter through
less(append|less). You can also usemoreinstead ofless.