I want to copy a certain file to a location, irrespective of that file already exists in the destination or not. I\'m trying to copy through shell script.But the file is not get
Use
cp -fr /source/file /destination
this should probably solve the problem.