Friday, 12 December 2014

Shell Scripts to Copy the files

Write a Shell Script to Copy the files

Solution:
echo “Copy Files”
echo “Enter The Source File"
read s
echo “Enter The Destination File”
read d
cp $s $d


Execution:





No comments:

Post a Comment