I am on TS6.5. Just now i was asked to delete a DCR with in the teamsite workarea it has a very long name ( Consider a Mini paragraph). I cannot delete it from Workarea using File>Delete nor i could delete it from the iw-mount. Now it is starting to bug me. Is there is way to delete it like kill in unix.Thanks
use strict;use warnings;my $dir = shift;opendir(DIR, $dir) || die "[opendir] '$dir' ($!)";my @files = grep { ! -d "$dir/$_" } readdir(DIR);closedir(DIR);foreach my $e (@files) { my $len = length($e); print "[$len]: "; foreach my $c (split(//, $e)) { if (ord($c) > 31 && ord($c) < 126) { print $c; } else { print chr($c); } } print "\n";}
rm -i ./*