Recursive chmod
Seting permission atau hak akses di linux sangatlah penting, apalagi kalau sudah berurusan dengan server yang berpengaruh pada hajat hidup orang banyak (halah). Berikut adalah contoh cara set custom chmod secara recursive khusus untuk folder saja atau khusus untuk file saja.
recursive untuk directory only:
$find . -type d -exec chmod 755 {} ;
recursive untuk file only
$find . -type d -exec chmod 755 {} ;
recursive untuk file ekstensi php saja
find . -type f -name '*.php' -exec chmod 644 {} ;
~ sekian