También puede crear un servicio como este en Automator:
LuegodaleunaccesodirectodesdePreferenciasdelsistema.
Comoalternativa,guardeestescripten~/Library/Scripts/Applications/Finder/
enelEditordeAppleScript:
tellapplication"Finder" to repeat with f in (get selection)
set locked of f to true
end repeat
Luego use FastScripts para darle un acceso directo al script.
Puede usar un script como este para alternar archivos de bloqueo:
for f;do [[ $(GetFileInfo -al "$f") = 0 ]]&&chflags uchg "$f"||chflags nouchg "$f";done
GetFileInfo
está en /Applications/Xcode.app/Contents/Developer/usr/bin/
si ha instalado Xcode y en /usr/bin/
si ha instalado el paquete de herramientas de línea de comandos.
O usando AppleScript:
tell application "Finder" to repeat with f in (get selection)
set locked of f to not locked of f
end repeat