What is the difference in outcomes when using chmod -R /dir/subdir and chmod /dir/subdir/* ?
Let's say we have /dir/subdir/file1. And we are assigning read and write perms to subdir and its file(s) for user and group owner, nothing for Others but it seems implied since permissions for Others aren't even mentioned. I am saying:
chmod -R 660 /dir/subdir
but the solution given in the guide says it should be:
chmod 660 /dir/subdir/*
What's with the asterisk?