I'm trying to find the last access date of clearcase view, perl script looks like below.
@Property = `cleartool lsview -prop $viewtag ` ;
foreach $property (@Property)
{
$last_accessed = $property if ( $property =~ /^Last accessed / );
# | cut -b 15-24 | awk -F '-' '{ print $3"/"$2"/"$1 }'
}
Problem what i'm facing is perl script exit if cleartool command fails. I want perl to continue even though cleartool returns error.
BRs Mani.