1284194Sdelphij#------------------------------------------------------------------------------
2284194Sdelphij# $File: varied.script,v 1.10 2014/03/01 22:32:39 christos Exp $
3284194Sdelphij# varied.script:  file(1) magic for various interpreter scripts
4284194Sdelphij
5284194Sdelphij0	string/t		#!\ /			a
6284194Sdelphij>3	string		>\0			%s script text executable
7284194Sdelphij!:strength / 2
8284194Sdelphij
9284194Sdelphij0	string/b		#!\ /			a
10284194Sdelphij>3	string		>\0			%s script executable (binary data)
11284194Sdelphij!:strength / 2
12284194Sdelphij
13284194Sdelphij0	string/t		#!\t/			a
14284194Sdelphij>3	string		>\0			%s script text executable
15284194Sdelphij!:strength / 2
16284194Sdelphij
17284194Sdelphij0	string/b		#!\t/			a
18284194Sdelphij>3	string		>\0			%s script executable (binary data)
19284194Sdelphij!:strength / 2
20284194Sdelphij
21284194Sdelphij0	string/t		#!/			a
22284194Sdelphij>2	string		>\0			%s script text executable
23284194Sdelphij!:strength / 2
24284194Sdelphij
25284194Sdelphij0	string/b		#!/			a
26284194Sdelphij>2	string		>\0			%s script executable (binary data)
27284194Sdelphij!:strength / 2
28284194Sdelphij
29284194Sdelphij0	string/t		#!\ 			script text executable
30284194Sdelphij>3	string		>\0			for %s
31284194Sdelphij!:strength / 3
32284194Sdelphij
33284194Sdelphij0	string/b		#!\ 			script executable
34284194Sdelphij>3	string		>\0			for %s (binary data)
35284194Sdelphij!:strength / 3
36284194Sdelphij
37284194Sdelphij# using env
38284194Sdelphij0	string/t	#!/usr/bin/env		a
39284194Sdelphij>15	string/t	>\0			%s script text executable
40284194Sdelphij!:strength / 10
41284194Sdelphij
42284194Sdelphij0	string/b	#!/usr/bin/env		a
43284194Sdelphij>15	string/b	>\0			%s script executable (binary data)
44284194Sdelphij!:strength / 10
45284194Sdelphij
46284194Sdelphij0	string/t	#!\ /usr/bin/env	a
47284194Sdelphij>16	string/t	>\0			%s script text executable
48284194Sdelphij!:strength / 10
49284194Sdelphij
50284194Sdelphij0	string/b	#!\ /usr/bin/env	a
51284194Sdelphij>16	string/b	>\0			%s script executable (binary data)
52284194Sdelphij!:strength / 10
53284194Sdelphij
54284194Sdelphij# From: arno <arenevier@fdn.fr>
55284194Sdelphij# mozilla xpconnect typelib
56284194Sdelphij# see http://www.mozilla.org/scriptable/typelib_file.html
57284194Sdelphij0	string 		XPCOM\nTypeLib\r\n\032		XPConnect Typelib
58284194Sdelphij>0x10  byte        x       version %d
59284194Sdelphij>>0x11 byte        x      \b.%d
60