[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[ale] Need help with RE in egrep
On Sat, 18 Sep 2010, Jim Lynch wrote:
> On 09/18/2010 03:03 PM, Mike Harrison wrote:
>>
>> Would using:
>>
>> find -type f
>>
>> work for you?
>>
>>
>>
> If I'm not mistaken, that would eliminate all hidden files, I just want to
> get rid of the first level. Correct me if I'm wrong.
meuon at meuon-laptop:~$ mkdir test
meuon at meuon-laptop:~$ cd test
meuon at meuon-laptop:~/test$ touch file
meuon at meuon-laptop:~/test$ touch .hidden
meuon at meuon-laptop:~/test$ ls
file
meuon at meuon-laptop:~/test$ find .
.
./file
./.hidden
meuon at meuon-laptop:~/test$ find . -type f
./file
./.hidden
meuon at meuon-laptop:~/test$