Cara Menghapus File Tertentu Secara Recursive di Linux & Windows
Untuk menghapus file tertentu secara recursive di Linux gunakan command berikut:
[root@localhost]# find / -type f -name '<filename>' -deletecontoh:
[root@localhost]# find / -type f -name '*.eml' -deleteSedangkan di Windows gunakan command berikut:
C:\Users\user>cd\ C:\>del /s <filename>contoh:
C:\>del /s *.eml