4 items
Making a Script Owner-Executable
Changing File Ownership
Change File Ownership Command
Reading chmod Symbolic Permissions
Spot the wrong command used to transfer file ownership to another user.
#!/bin/bash # Give ownership of report.txt to user 'alice' and group 'staff' chmod alice:staff report.txt # Then allow owner read/write chmod u+rw report.txt
What is the bug in this script?