Program:(PWD=Present Working Directory)
echo enter the source file to copy
read x
echo enter the destination file to copy
read y
cp $x $y
echo coping successfully completed
Input/OutPut
enter the source file to copy
yy.c
enter the destination file to copy
yyy.c
coping successfully completed
No comments:
Post a Comment