Untitled

Anonymous
plain_text
08/11/2023 12:11 PM
444 B
22
Indexable
{
string $pasted[] = `ls "pasted__*"`;
string $object;
for ( $object in $pasted )
{
string $elements[];

tokenize( $object, "|", $elements );
string $stripped = $elements[ `size $elements` - 1 ];


$stripped = `substitute "pasted__" $stripped ""`;

catchQuiet(`evalEcho("rename " + $object + " " + $stripped)`);
}
}
Editor is loading...