I am trying to create a folder with in a folder by passing a parameter.
this is what I am trying to do
parameter I am passing in a function today(date) is 20080124
and declared a variable
dir=/ab/bc
I want to create a directory with this this parameter value with in directory $dir
so I am saying
pwd=$dir
mkdir=$date
pwd=`$pwd+$mkdir+"\"`
is this valid???please advise