How Do I Write This Unix Command?
Write the Unix command to add execute permission to everybody
to all files that begin with the letter “g” and end with a digit
from the directory /students/honors
Posted on August 6, 2009 at 7:33 pm
Open a console window or if no X windows…
man chmod
q to exit
At least this way, you might be able to RTFM next time you need a command.
I hope you don’t need help for job interviews later.
Shadow Wolf
Posted on August 6, 2009 at 7:33 pm
Hm….
Yup!
chmod 755 /students/honors/g*[0-9]
Posted on August 6, 2009 at 7:33 pm
read the assignment and do your own homework .
Posted on August 6, 2009 at 7:33 pm
chmod a+x /students/honors/g*[0-9]