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.47
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 /
slsh /
help /
[ HOME SHELL ]
Name
Size
Permission
Action
arrayfuns.hlp
1.79
KB
-rw-r--r--
base64funs.hlp
5.92
KB
-rw-r--r--
chksumfuns.hlp
1.82
KB
-rw-r--r--
cmdopt.hlp
6.83
KB
-rw-r--r--
csvfuns.hlp
14.14
KB
-rw-r--r--
forkfuns.hlp
5.42
KB
-rw-r--r--
fswalk.hlp
4.2
KB
-rw-r--r--
glob.hlp
458
B
-rw-r--r--
histfuns.hlp
7.08
KB
-rw-r--r--
jsonfuns.hlp
3.15
KB
-rw-r--r--
listfuns.hlp
5.68
KB
-rw-r--r--
onigfuns.hlp
5.3
KB
-rw-r--r--
pcrefuns.hlp
6.45
KB
-rw-r--r--
pngfuns.hlp
8.86
KB
-rw-r--r--
print.hlp
1.92
KB
-rw-r--r--
process.hlp
7.45
KB
-rw-r--r--
profile.hlp
3.38
KB
-rw-r--r--
randfuns.hlp
15.06
KB
-rw-r--r--
readascii.hlp
4.7
KB
-rw-r--r--
require.hlp
2.38
KB
-rw-r--r--
setfuns.hlp
3.33
KB
-rw-r--r--
slsmg.hlp
12.42
KB
-rw-r--r--
sockfuns.hlp
6.34
KB
-rw-r--r--
statsfuns.hlp
24.29
KB
-rw-r--r--
structfuns.hlp
2.48
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : structfuns.hlp
struct_filter SYNOPSIS Apply a filter to a struct USAGE struct_filter(Struct_Type s, Int_Type i) DESCRIPTION This function applies the filter `i' to the fields of a structure by performing the operation s.field = s.field[i]; on each array field of the structure. Scalar fields will not be modified. The `dim' qualifier may be used to filter on a specific array dimension. For example, consider the structure s = struct { a = Int_Type[10], b = Int_Type[10,20] }; Then struct_filter (s, i; dim=0); would produce the same result as s.a = s.a[i]; s.b = s.b[i,*]; NOTES By default this function modifies the fields of the structure passed to it. Sometimes it is desirable to create a new structure and leave the old one untouched. This may be achieved using the `copy' qualifier, e.g., filtered_s = struct_filter (s, i; copy); SEE ALSO where -------------------------------------------------------------- struct_combine SYNOPSIS Combine two or more structures USAGE new_s = struct_combine (s1, s2, ...) DESCRIPTION This function creates a new structure from two or more structures `s1', `s2',.... The new structure will have fields formed by the union of the fields of the input structures. The new structure fields will be given values that correspond to the fields of the input structures. If more than one structure has the same field name, the value of the field will be given by the last structure. If any of the input values is a string, or an array of strings, then it will be interpreted as a representing a structure with the corresponding field names. This is a useful feature when one wants to expand a structure with new field names, e.g., s = struct { foo, bar }; t = struct_combine (s, "baz"); % t = struct {foo, bar, baz}; NOTES The same effect can be achieved by using the dereference operator, e.g., t = struct { @s, "baz" }; SEE ALSO get_struct_field_names -------------------------------------------------------------- struct_field_exists SYNOPSIS Determine whether or not a structure contains a specified field USAGE Int_Type struct_field_exists (Struct_Type s, String_Type f) DESCRIPTION This function may be used to determine if a structure contains a field with a specfied name. It returns 0 if the structure does not contain the field, or non-zero if it does. SEE ALSO get_struct_field_names --------------------------------------------------------------
Close