Skip to main content
added 19 characters in body
Source Link
Matteo Italia
  • 125.8k
  • 18
  • 210
  • 307

The 'find'find command may help

find $PWD -name ex*

find $PWD -name example.log

find $PWD -name ex*
find $PWD -name example.log

Lists all the files in or below the current directory with names matching the pattern. You can simplify it if you will only get a few results (e.g. directory near bottom of tree containing few files), just

find $PWD

find $PWD

I use this on Solaris 10, don'twhich doesn't have the other utilitesutilities mentioned.

The 'find' command may help

find $PWD -name ex*

find $PWD -name example.log

Lists all the files in or below the current directory with names matching the pattern. You can simplify it if you will only get a few results (e.g. directory near bottom of tree containing few files), just

find $PWD

I use this on Solaris 10, don't have the other utilites mentioned.

The find command may help

find $PWD -name ex*
find $PWD -name example.log

Lists all the files in or below the current directory with names matching the pattern. You can simplify it if you will only get a few results (e.g. directory near bottom of tree containing few files), just

find $PWD

I use this on Solaris 10, which doesn't have the other utilities mentioned.

Source Link
lessthanideal
  • 1.1k
  • 13
  • 14

The 'find' command may help

find $PWD -name ex*

find $PWD -name example.log

Lists all the files in or below the current directory with names matching the pattern. You can simplify it if you will only get a few results (e.g. directory near bottom of tree containing few files), just

find $PWD

I use this on Solaris 10, don't have the other utilites mentioned.