|
Directory inside directory problem
hii,
I have to create a directory under the same directory with the date +%a extension like this
BackupLocation=$BackupLocation/$BackupLocation$(date +%w)
but the problem is ---
if backuplocation is abc/dfg then accroding to the above statement it would be
abc/dfg/abc/dfg5
but i want it like this--
abc/dfg/dfg5
kindly give me some suggestions.
|