把当前目录下面的file(不包括目录),移动到/home/jack

 

find  .  -type f  -exec mv {}   /home/jack   \;

find .  -type f  |  xargs  -i  '{}'  mv  {}  /home/jack