����JFIF���������
__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
#!/usr/bin/sh
##
## mkdir.sh -- make directory hierarchy
##
## Based on `mkinstalldirs' from Noah Friedman <friedman@prep.ai.mit.edu>
## as of 1994-03-25, which was placed in the Public Domain.
## Cleaned up for Apache's Autoconf-style Interface (APACI)
## by Ralf S. Engelschall <rse@apache.org>
##
#
# This script falls under the Apache License.
# See http://www.apache.org/docs/LICENSE
umask 022
errstatus=0
for file in ${1+"$@"} ; do
set fnord `echo ":$file" |\
sed -e 's/^:\//%/' -e 's/^://' -e 's/\// /g' -e 's/^%/\//'`
shift
pathcomp=
for d in ${1+"$@"}; do
pathcomp="$pathcomp$d"
case "$pathcomp" in
-* ) pathcomp=./$pathcomp ;;
?: ) pathcomp="$pathcomp/"
continue ;;
esac
if test ! -d "$pathcomp"; then
thiserrstatus=0
mkdir "$pathcomp" || thiserrstatus=$?
# ignore errors due to races if a parallel mkdir.sh already
# created the dir
if test $thiserrstatus != 0 && test ! -d "$pathcomp" ; then
errstatus=$thiserrstatus
fi
fi
pathcomp="$pathcomp/"
done
done
exit $errstatus
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| apr_rules.mk | File | 6.17 KB | 0755 |
|
| libtool | File | 331.14 KB | 0755 |
|
| make_exports.awk | File | 2.92 KB | 0755 |
|
| make_var_export.awk | File | 1023 B | 0755 |
|
| mkdir.sh | File | 1.18 KB | 0755 |
|