Linux iad1-shared-b7-18 6.6.49-grsec-jammy+ #10 SMP Thu Sep 12 23:23:08 UTC 2024 x86_64
Apache
: 67.205.6.31 | : 216.73.216.13
Cant Read [ /etc/named.conf ]
8.2.29
fernandoquevedo
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
usr /
share /
doc /
racc /
examples /
[ HOME SHELL ]
Name
Size
Permission
Action
array.y
971
B
-rw-r--r--
array2.y
928
B
-rw-r--r--
calc-ja.y
1.17
KB
-rw-r--r--
calc.y
1017
B
-rw-r--r--
conflict.y
224
B
-rw-r--r--
hash.y
1.04
KB
-rw-r--r--
lalr.y
148
B
-rw-r--r--
lists.y
1.01
KB
-rw-r--r--
syntax.y
674
B
-rw-r--r--
yyerr.y
483
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : lists.y
# $Id$ # # Rules for verious lists. # This file is just an example, you cannot compile this file. class ExampleOnly rule # a list, which minimum number of items is 0 list0 : { result = [] } | list0 item { result.push val[1] } # a list, which minimum number of items is 1 list1 : item { result = val } | list1 item { result.push val[1] } # a list, separated by comma clist : item { result = val } | clist ',' item { result.push val[2] } # a hash. see also "hash.y". hash : '{' hash_contents '}' { result = val[1] } | '{' '}' { result = {} } hash_contents : item "=>" item { result = { val[0] => val[2] } } | hash_contents ',' item "=>" item { result[val[2]] = val[4] }
Close