Need a script to move the files from one dir to other other dir

Need a script to move the files from one dir to other dir and at the same time it has to read the log in the source dir. Please help me ASAP.

Can you come with a example of exactly what you need.

I need script for the below mentioned procedure.

  1. cd /kishore---- log into kishore dir
  2. ls */error/* ---- find the error files
  3. there are few error files in different dir's
  4. cd /kishore/error/error files-----Go to that error files dir
  5. mv ../xyz----- mv the error files to xyz dir
  6. cat log file ---- read the log file which is already exist in that error dir
  7. copy the log content to some other dir
  8. rm /kishore/error/log---remove the log.

what you have tried so far ?

#!/bin/bash

cd /source_directory

mv * /destination_directory

:o:)