Mencari folder kosong

Dari IGNwiki
Revisi per 5 Desember 2009 16.29 oleh Ns (bicara | kontrib) (←Membuat halaman berisi 'Mencari folder kosong Cari folder kosong # find /path -type d -empty Cari folder kosong dan tampilkan # find /path -type d -empty -exec ls -ld {} \; Cari folder koso…')

(beda) ←Revisi sebelumnya | Revisi terkini (beda) | Revisi selanjutnya→ (beda)
Langsung ke: navigasi, cari

Mencari folder kosong

Cari folder kosong

  1. find /path -type d -empty


Cari folder kosong dan tampilkan

  1. find /path -type d -empty -exec ls -ld {} \;


Cari folder kosong dan simpan ke file txt

  1. find /path -type d -empty -exec ls -ld >> /tmp/savefiles.txt {} \;


Cari folder kosong dan hapus

  1. find /path -type d -empty -exec rmdir {} \;