i am trying to move to the dest_dir from Current Working Directory using the following script. my intension is instead of using cd dest_dir, i have to use the script to do the job.
when ever i tried with the follwing script, iam again in my Current working directoy...
#!/usr/bin/bash
CWD=pwd
cd ${CWD}/dest_dir
Regards,
eapln