REM Softimage Script ŠEd Harriss 1999, EdHarriss@Hotmail.com REM http://welcome.to/edharriss REM This script padds SOFTIMAGE* picture files with leading zeroes. REM *SOFTIMAGE is a registered trademark of Avid Technology Inc. if %2 LSS 10 goto short if %2 LSS 100 goto med if %2 LSS 1000 goto long if %2 GEQ 1000 goto longest :short mv %1.%2.pic %1.000%2.pic exit :med mv %1.%2.pic %1.00%2.pic exit :long mv %1.%2.pic %1.0%2.pic exit :longest mv %1.%2.pic %1.%2.pic exit