I used an alias to generate a log file for an application to produce the log file with time of invoking like this
alias app org_app -log `date| cut -c 5-7,9-10,12-13,15-16,18-19`.log
and I entered in the .cshrc file.
but the date is stored when I invoke the .cshrc file.
so, if in a same session, I invoke the application several times, i get my log file overwritten.
Is there a solution for this?
