
find:ai:78e0e
delete all files recursively ending with .nfo in specific folder
$ find /path/to/folder -type f -name '*.nfo' -delete
try on your machine
This command finds all files ending with .nfo in the specified folder and its subdirectories, then deletes them recursively.
This explanation was created by an AI. In most cases those are correct. But please always be careful and
never run a command you are not sure if it is safe.
Questions that are answered by this command:
- delete all files recursively ending with .nfo in specific folder?