Mencari folder kosong

Dari IGNwiki
Revisi per 5 Desember 2009 16.30 oleh Ns (bicara | kontrib)

Langsung ke: navigasi, cari

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 kosong dan simpan ke file txt

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


Cari folder kosong dan hapus

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