rm *

The problem: Delete all files whose names contain the word "conflicted"
My approach: Construct the perfect find command and pipe it into an rm command
The right approach: rm *conflicted*

#rookiemistake