Puoi anche creare un servizio come questo in Automator:
QuindidaiuncollegamentodaPreferenzediSistema.
Inalternativa,salvaquestoscriptin~/Library/Scripts/Applications/Finder/
inAppleScriptEditor:
tellapplication"Finder" to repeat with f in (get selection)
set locked of f to true
end repeat
Quindi usa FastScripts per dare allo script un collegamento.
Puoi utilizzare uno script come questo per attivare / disattivare il blocco dei file:
for f;do [[ $(GetFileInfo -al "$f") = 0 ]]&&chflags uchg "$f"||chflags nouchg "$f";done
GetFileInfo
è in /Applications/Xcode.app/Contents/Developer/usr/bin/
se hai installato Xcode e in /usr/bin/
se hai installato il pacchetto strumenti della riga di comando.
O usando AppleScript:
tell application "Finder" to repeat with f in (get selection)
set locked of f to not locked of f
end repeat