0

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?

paulj
  • 238

1 Answers1

-1

The + indicates you have acl on the file. do this command

getfacl file.a

It should show why you cannot remove the file.

  • OSX does not have getfacl. See link in AdminBee comment – paulj Mar 13 '20 at 14:08
  • then use that method to remove the ACL. same issue just a different method of setting ACL's And mark it solved so people will stop looking at your post. – Mark Stewart Mar 13 '20 at 14:12