A ferramenta mais versátil para controlar a saída do find é seu próprio recurso -printf. Tem a sequência% P cuja função é
%P File's name with the name of the command line argument
under which it was found removed.
find -name '*.php' -printf "%P\n"
é o mesmo que
find ./ -name '*.php' -printf "%P\n"
so ./ é removido do começo de cada linha