Which command grants execute permission to all users for every file and subdirectory within the 'progs' directory?
Explanation
Option A uses the recursive (-R) flag to add execute permission (a+x) for all users on the 'progs' directory and its contents. Option B sets write-only permission, which is incorrect. Option C uses an invalid flag (-1). Option D attempts to remove execute permission incorrectly.