Mencari folder kosong: Perbedaan revisi

Dari IGNwiki
Langsung ke: navigasi, cari
 
(Tidak ada perbedaan)

Revisi terkini pada 12 Juni 2010 17.40

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 {} \;