Remove first 2 letters in a file name

Closed
vivek - May 4, 2010 at 02:20 AM
 ryan - May 8, 2010 at 12:59 AM
rename first 2 letters of a filename using rename command.
for example "1123456" should be "23456"


Related:

1 response

in PHP.

<?php

$text="1123456";

echo substr($text,2);

?>

the output of the above code is 23456
0