[Solved] Find command error: find: missing “- exec” parameter solution

Find command error: find: missing “- exec” parameter solution

terms of settlement:

Today, we are executing find. - type F - size 0 - exec RM - RF {}\; command to delete empty file, package error: find: missing “- exec” parameter

Solution:

{} needs to be followed by a space find . -type f -size 0 -exec rm -rf {} \;

Read More: