mirror of
https://github.com/kogakure/dotfiles.git
synced 2026-02-03 12:15:29 +00:00
6 lines
270 B
Fish
6 lines
270 B
Fish
function unquarantine --description "Manually remove a downloaded app or file from the quarantine"
|
|
for attribute in com.apple.metadata:kMDItemDownloadedDate com.apple.metadata:kMDItemWhereFroms com.apple.quarantine
|
|
xattr -r -d "$attribute" $argv
|
|
end
|
|
end
|