Visto che mi sono serviti in questi giorni; vanno lanciati da un terminale.
Con // vengono indicati i commenti, non vanno digitati.
Vedere solo i file definiti visibili
defaults write com.apple.finder AppleShowAllFiles FALSE
//All files è falso quindi
killall -KILL Finder
//restarta il finder
Vedere anche i file nascosti
defaults write com.apple.finder AppleShowAllFiles TRUE
//All files è falso quindi
killall -KILL Finder
//restarta il finder
Rendere INVISIBILE
/Developer/Tools/SetFile -a V /nome_file
// o al posto di nome file * per tutti i file
esempio : setfile -a V testfile.txt
Rendere VISIBILE
/Developer/Tools/SetFile -a v /nome_file
// o al posto di nome file * per tutti i file
esempio: setfile -a v testfile.txt

1 commento