I am trying to move all files with names starts with SML from directory to another. Tried with
SML
find /var/.../Images/ -name SML\* mv /var/.../Images/Small but doesnt work
find /var/.../Images/ -name SML\* mv /var/.../Images/Small
try find /var/.../Images/ -name SML\* -exec mv {} /var/.../Images/Small/ \;
find /var/.../Images/ -name SML\* -exec mv {} /var/.../Images/Small/ \;