When i do a find inside a directory i get the output like
./MyWork/a.c
./MyW开发者_Go百科ork/b.c
./mtab
My question is how can use find command in such a way that my output will not show ./
my output should be
MyWork/a.c
MyWork/b.c
mtab
Thanks, LinuxPenseur
Add -printf "%P\n"
at the end.
精彩评论