Looked around for what the following means:
-rw-r--r--+ Filea.a
The above file in OSX can not be removed with sudo rm -rf.
Operation not permitted
What does the "+" signify? How does one remove such a file?
Looked around for what the following means:
-rw-r--r--+ Filea.a
The above file in OSX can not be removed with sudo rm -rf.
Operation not permitted
What does the "+" signify? How does one remove such a file?
The + indicates you have acl on the file. do this command
getfacl file.a
It should show why you cannot remove the file.
+
character indicates that an access control list (ACL) has been defined for the file. – AdminBee Mar 12 '20 at 16:04