mirror of
https://github.com/horsicq/Detect-It-Easy.git
synced 2026-06-24 01:54:08 +00:00
18 lines
437 B
Text
18 lines
437 B
Text
// DIE's signature file
|
|
// Author: Jason Hood <jadoxa@yahoo.com.au>
|
|
|
|
init("script");
|
|
|
|
includeScript("shell-script");
|
|
|
|
function detect(bShowType,bShowVersion,bShowOptions)
|
|
{
|
|
if(sInterpreter)
|
|
{
|
|
// Capitalize the first letter, lowercase the rest.
|
|
sName=sInterpreter.substr(0,1).toUpperCase()+sInterpreter.substr(1).toLowerCase();
|
|
bDetected=1;
|
|
}
|
|
|
|
return result(bShowType,bShowVersion,bShowOptions);
|
|
}
|