I made a file called -duration=5 by accident and could not delete it, the only way that worked was this!
First find it, and narrow it down to be the only one
1 2 3 |
find . -name "*duration*" |
Then add the -delete tag to it
1 2 3 |
find . -name "*duration*" -delete |