A command
chmod -R 775 /home/den/backup/*.sh
responds with
No such file or directory
I know there are shells within that structure, specifically some at /home/den/backup/shells
What is wrong with my command?
A command
chmod -R 775 /home/den/backup/*.sh
responds with
No such file or directory
I know there are shells within that structure, specifically some at /home/den/backup/shells
What is wrong with my command?
You can not use -R with
*.sh
. Your directories are NOT inIf you want
*.sh
inside/home/den/backup/shells
it needs to beA method to do it recursive for all files ending in
.sh
: