I am trying to write a script where I can find files larger than a certain size and then move them to another dir but the find command also includes the current dir in the result which is not required to be moved the following is the command I wrote and the message I get
$ find -size +2000c -print0 | while IFS= read -r -d $'\0' file; do mv $file ~/wrkbnch; done
mv: cannot move '.' to '/home/jerry/wrkbnch/.': Device or resource busy