Results 1 to 2 of 2
find . -name *.lex
This command lists the output from the current directory as expected, but not from the subdirectories. Also, the command shows error in running from any of ...
- 01-09-2007 #1Just Joined!
- Join Date
- Nov 2006
- Posts
- 4
problem with find command
find . -name *.lex
This command lists the output from the current directory as expected, but not from the subdirectories. Also, the command shows error in running from any of the subdirectories.
Why?
- 01-09-2007 #2Just Joined!
- Join Date
- Nov 2006
- Posts
- 4
Problem solved.
It should have been:
find . -name "*.lex"


Reply With Quote