in reply to Calling perl file from .s file

UNIX does not use file extensions as such, although some programs do (gcc springs to mind). Any suffix after a dot is just part of the filename - it might aid the user as a guide to the file type, but has no significance to the operating system. So on UNIX you can call your scripts anything you like, and run them using system, just so long as you conform to normal practice on your site.

Replies are listed 'Best First'.
Re^2: Calling perl file from .s file
by tej (Scribe) on Oct 22, 2010 at 07:25 UTC

    Thank you cdarke