How to strip leading "./" in unix "find"?

Posted by breadjesus on Stack Overflow See other posts from Stack Overflow or by breadjesus
Published on 2010-04-07T22:54:40Z Indexed on 2010/04/07 23:03 UTC
Read the original article Hit count: 165

Filed under:
|
|
find . -type f -print

prints out

./file1
./file2
./file3

Any way to make it print

file1
file2
file3

?

© Stack Overflow or respective owner

Related posts about unix

Related posts about find