8
Nov/081
Nov/081
Linux: Find and delete files/directories recursively in Linux
To have the OS find and delete files and directories recursively in Linux try the following command:
find <path> -name <filename> -exec rm -rf {} ;
Example:
find /vmware -name *.log -exec rm -rf {} ;
To find and replace strings within files look here.
Related posts:
- Linux: find a string recursively within files
- Linux: A simple and quick way of sharing a folder with Windows systems using Samba
- Linux: vsftpd and symbolic links
