Is there a difference between
Code:
find / -iname "*.mp3"
and
Code:
find / -iname "*.mp3" -print
Both give the same output.
I RTFM and could not find any clear explanation regarding -print option, whether it is a default parameter. (
Please note that my question is not related to the difference between -print and -print0.)
Thanks.