Linux ip-172-26-7-228 5.4.0-1103-aws #111~18.04.1-Ubuntu SMP Tue May 23 20:04:10 UTC 2023 x86_64
Apache
: 172.26.7.228 | : 3.145.42.140
Cant Read [ /etc/named.conf ]
5.6.40-24+ubuntu18.04.1+deb.sury.org+1
www-data
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
home /
ubuntu /
ImageMagick-7.0.10-22 /
[ HOME SHELL ]
Name
Size
Permission
Action
Magick++
[ DIR ]
drwxrwxr-x
MagickCore
[ DIR ]
drwxrwxr-x
MagickWand
[ DIR ]
drwxrwxr-x
PerlMagick
[ DIR ]
drwxrwxr-x
coders
[ DIR ]
drwxrwxr-x
config
[ DIR ]
drwxrwxr-x
filters
[ DIR ]
drwxrwxr-x
images
[ DIR ]
drwxrwxr-x
m4
[ DIR ]
drwxrwxr-x
scripts
[ DIR ]
drwxrwxr-x
tests
[ DIR ]
drwxrwxr-x
utilities
[ DIR ]
drwxrwxr-x
www
[ DIR ]
drwxrwxr-x
AUTHORS.txt
5.67
KB
-rw-rw-r--
ChangeLog
95.18
KB
-rw-rw-r--
ImageMagick.spec
10.78
KB
-rw-rw-r--
ImageMagick.spec.in
10.81
KB
-rw-rw-r--
Install-mac.txt
2.94
KB
-rw-rw-r--
Install-unix.txt
27.6
KB
-rw-rw-r--
Install-vms.txt
1.12
KB
-rw-rw-r--
Install-windows.txt
1.72
KB
-rw-rw-r--
LICENSE
12.15
KB
-rw-rw-r--
Magickshr.opt
8.42
KB
-rw-rw-r--
Makefile
952.68
KB
-rw-rw-r--
Makefile.am
11.55
KB
-rw-rw-r--
Makefile.in
1.17
MB
-rw-rw-r--
NEWS.txt
2.01
KB
-rw-rw-r--
NOTICE
11.73
KB
-rw-rw-r--
Platforms.txt
6.37
KB
-rw-rw-r--
QuickStart.txt
4.32
KB
-rw-rw-r--
README.txt
7.31
KB
-rw-rw-r--
aclocal.m4
46.08
KB
-rw-rw-r--
common.shi
1.6
KB
-rw-rw-r--
common.shi.in
1.25
KB
-rw-rw-r--
config.log
626.35
KB
-rw-rw-r--
config.status
97.42
KB
-rwxrwxr-x
configure
1.14
MB
-rwxrwxr-x
configure.ac
129.07
KB
-rw-rw-r--
index.html
20.45
KB
-rw-rw-r--
libtool
337.79
KB
-rwxrwxr-x
local.exp
0
B
-rw-rw-r--
magick.sh
1.62
KB
-rwxrwxr-x
magick.sh.in
1.53
KB
-rwxrwxr-x
version.sh
1.79
KB
-rw-rw-r--
winpath.sh
1.75
KB
-rw-rw-r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : winpath.sh
#!/bin/sh # Copyright (C) 1999-2020 ImageMagick Studio LLC # Copyright (C) 2003 - 2008 GraphicsMagick Group # # This program is covered by multiple licenses, which are described in # LICENSE. You should have received a copy of LICENSE with this # package; otherwise see https://imagemagick.org/script/license.php. # # Convert the specified POSIX path to a Windows path under MinGW and Cygwin # The optional second parameter specifies the level of backslash escaping # to apply for each Windows backslash position in order to support varying # levels of variable substitutions in scripts. # # Note that Cygwin includes the 'cygpath' utility, which already provides # path translation capability. # # Written by Bob Friesenhahn, June 2002 # arg="$1" escapes=0 if test -n "$2" then escapes="$2" fi if test $escapes -gt 3 then echo "$0: escape level must in range 0 - 3" exit 1 fi result='' length=0 max_length=0 mount | sed -e 's:\\:/:g' | ( IFS="\n" while read mount_entry do win_mount_path=`echo "$mount_entry" | sed -e 's: .*::g'` unix_mount_path=`echo "$mount_entry" | sed -e 's:.* on ::;s: type .*::'` temp=`echo "$arg" | sed -e "s!^$unix_mount_path!$win_mount_path/!"` if test "$temp" != "$arg" then candidate="$temp" length=${#unix_mount_path} if test $length -gt $max_length then result=$candidate max_length=$length fi fi done if test -z "$result" then echo "$0: path \"$arg\" is not mounted" exit 1 fi case $escapes in 0) echo "$result" | sed -e 's:/:\\:g' ;; 1) echo "$result" | sed -e 's:/:\\\\:g' ;; 2) echo "$result" | sed -e 's:/:\\\\\\\\:g' ;; 3) echo "$result" | sed -e 's:/:\\\\\\\\\\\\\\\\:g' ;; esac exit 0; )
Close