|
Yes this would ensure unique file name because in Perl the variable $$ denotes the process id that is used currently. In addition you have also used $^T which denotes current timestamp. So association of both these gives unique process id with current timestamp to filename making the filename as unique.
|