Linux anchor 4.4.0-210-generic #242-Ubuntu SMP Fri Apr 16 09:57:56 UTC 2021 x86_64
Apache/2.4.18 (Ubuntu)
Server IP : 10.10.100.4 & Your IP : 216.73.217.150
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
language-tools /
Delete
Unzip
Name
Size
Permission
Date
Action
language-options
2.6
KB
-rwxr-xr-x
2020-11-02 18:44
language-validate
1.79
KB
-rwxr-xr-x
2020-11-02 18:44
language2locale
1.75
KB
-rwxr-xr-x
2020-11-02 18:44
locale2papersize
320
B
-rwxr-xr-x
2020-11-02 18:44
main-countries
420
B
-rw-r--r--
2020-11-02 18:44
save-to-pam-env
1004
B
-rwxr-xr-x
2020-11-02 18:44
set-language-helper
732
B
-rwxr-xr-x
2020-11-02 18:44
update-langlist
1.32
KB
-rwxr-xr-x
2020-11-02 18:44
Save
Rename
#!/bin/sh -pe # # locale2papersize outputs the paper size "a4" or "letter" based on # the height and width in the locale that is passed as an argument. export LC_PAPER=$1 height=$( locale height ) width=$( locale width ) if [ "$height" = 279 -a "$width" = 216 ]; then size=letter else size=a4 fi echo $size