__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
#! /bin/sh
# mkinstalldirs --- make directory hierarchy
scriptversion=2006-05-11.19
# Original author: Noah Friedman <friedman@prep.ai.mit.edu>
# Created: 1993-05-16
# Public domain.
#
# This file is maintained in Automake, please report
# bugs to <bug-automake@gnu.org> or send patches to
# <automake-patches@gnu.org>.
nl='
'
IFS=" "" $nl"
errstatus=0
dirmode=
usage="\
Usage: mkinstalldirs [-h] [--help] [--version] [-m MODE] DIR ...
Create each directory DIR (with mode MODE, if specified), including all
leading file name components.
Report bugs to <bug-automake@gnu.org>."
# process command line arguments
while test $# -gt 0 ; do
case $1 in
-h | --help | --h*) # -h for help
echo "$usage"
exit $?
;;
-m) # -m PERM arg
shift
test $# -eq 0 && { echo "$usage" 1>&2; exit 1; }
dirmode=$1
shift
;;
--version)
echo "$0 $scriptversion"
exit $?
;;
--) # stop option processing
shift
break
;;
-*) # unknown option
echo "$usage" 1>&2
exit 1
;;
*) # first non-opt arg
break
;;
esac
done
for file
do
if test -d "$file"; then
shift
else
break
fi
done
case $# in
0) exit 0 ;;
esac
# Solaris 8's mkdir -p isn't thread-safe. If you mkdir -p a/b and
# mkdir -p a/c at the same time, both will detect that a is missing,
# one will create a, then the other will try to create a and die with
# a "File exists" error. This is a problem when calling mkinstalldirs
# from a parallel make. We use --version in the probe to restrict
# ourselves to GNU mkdir, which is thread-safe.
case $dirmode in
'')
if mkdir -p --version . >/dev/null 2>&1 && test ! -d ./--version; then
echo "mkdir -p -- $*"
exec mkdir -p -- "$@"
else
# On NextStep and OpenStep, the `mkdir' command does not
# recognize any option. It will interpret all options as
# directories to create, and then abort because `.' already
# exists.
test -d ./-p && rmdir ./-p
test -d ./--version && rmdir ./--version
fi
;;
*)
if mkdir -m "$dirmode" -p --version . >/dev/null 2>&1 &&
test ! -d ./--version; then
echo "mkdir -m $dirmode -p -- $*"
exec mkdir -m "$dirmode" -p -- "$@"
else
# Clean up after NextStep and OpenStep mkdir.
for d in ./-m ./-p ./--version "./$dirmode";
do
test -d $d && rmdir $d
done
fi
;;
esac
for file
do
case $file in
/*) pathcomp=/ ;;
*) pathcomp= ;;
esac
oIFS=$IFS
IFS=/
set fnord $file
shift
IFS=$oIFS
for d
do
test "x$d" = x && continue
pathcomp=$pathcomp$d
case $pathcomp in
-*) pathcomp=./$pathcomp ;;
esac
if test ! -d "$pathcomp"; then
echo "mkdir $pathcomp"
mkdir "$pathcomp" || lasterr=$?
if test ! -d "$pathcomp"; then
errstatus=$lasterr
else
if test ! -z "$dirmode"; then
echo "chmod $dirmode $pathcomp"
lasterr=
chmod "$dirmode" "$pathcomp" || lasterr=$?
if test ! -z "$lasterr"; then
errstatus=$lasterr
fi
fi
fi
fi
pathcomp=$pathcomp/
done
done
exit $errstatus
# Local Variables:
# mode: shell-script
# sh-indentation: 2
# eval: (add-hook 'write-file-hooks 'time-stamp)
# time-stamp-start: "scriptversion="
# time-stamp-format: "%:y-%02m-%02d.%02H"
# time-stamp-end: "$"
# End:
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| fileattrs | Folder | 0755 |
|
|
| macros.d | Folder | 0755 |
|
|
| platform | Folder | 0755 |
|
|
| redhat | Folder | 0755 |
|
|
| appdata.prov | File | 333 B | 0755 |
|
| brp-compress | File | 1.41 KB | 0755 |
|
| brp-java-gcjcompile | File | 1.38 KB | 0755 |
|
| brp-python-bytecompile | File | 2.96 KB | 0755 |
|
| brp-python-hardlink | File | 658 B | 0755 |
|
| brp-strip | File | 509 B | 0755 |
|
| brp-strip-comment-note | File | 741 B | 0755 |
|
| brp-strip-shared | File | 706 B | 0755 |
|
| brp-strip-static-archive | File | 411 B | 0755 |
|
| check-buildroot | File | 1.21 KB | 0755 |
|
| check-files | File | 1.02 KB | 0755 |
|
| check-prereqs | File | 418 B | 0755 |
|
| check-rpaths | File | 1.01 KB | 0755 |
|
| check-rpaths-worker | File | 4.93 KB | 0755 |
|
| config.guess | File | 44.24 KB | 0755 |
|
| config.sub | File | 34.62 KB | 0755 |
|
| debugedit | File | 33.01 KB | 0755 |
|
| desktop-file.prov | File | 602 B | 0755 |
|
| elfdeps | File | 15.31 KB | 0755 |
|
| find-debuginfo.sh | File | 14.42 KB | 0755 |
|
| find-lang.sh | File | 5.77 KB | 0755 |
|
| find-provides | File | 1.52 KB | 0755 |
|
| find-requires | File | 3.43 KB | 0755 |
|
| fontconfig.prov | File | 489 B | 0755 |
|
| javadoc.req | File | 76 B | 0755 |
|
| kabi.sh | File | 428 B | 0755 |
|
| libtooldeps.sh | File | 718 B | 0755 |
|
| macros | File | 37.33 KB | 0644 |
|
| macros.perl | File | 473 B | 0644 |
|
| macros.php | File | 192 B | 0644 |
|
| macros.python | File | 906 B | 0644 |
|
| maven.prov | File | 3.67 KB | 0755 |
|
| maven.req | File | 7.75 KB | 0755 |
|
| mkinstalldirs | File | 3.41 KB | 0755 |
|
| mono-find-provides | File | 1.08 KB | 0755 |
|
| mono-find-requires | File | 1.87 KB | 0755 |
|
| ocaml-find-provides.sh | File | 1.62 KB | 0755 |
|
| ocaml-find-requires.sh | File | 2.08 KB | 0755 |
|
| osgi.prov | File | 3.51 KB | 0755 |
|
| osgi.req | File | 3.79 KB | 0755 |
|
| osgideps.pl | File | 10.33 KB | 0755 |
|
| perl.prov | File | 5.72 KB | 0755 |
|
| perl.req | File | 11.48 KB | 0755 |
|
| perldeps.pl | File | 32.13 KB | 0644 |
|
| pkgconfigdeps.sh | File | 1.25 KB | 0755 |
|
| pythondeps.sh | File | 875 B | 0755 |
|
| rpm.daily | File | 296 B | 0644 |
|
| rpm.log | File | 61 B | 0644 |
|
| rpm.supp | File | 688 B | 0644 |
|
| rpm2cpio.sh | File | 1.3 KB | 0755 |
|
| File | 0 B | 0 |
|
|
| File | 0 B | 0 |
|
|
| rpmdb_loadcvt | File | 1.43 KB | 0755 |
|
| File | 0 B | 0 |
|
|
| File | 0 B | 0 |
|
|
| File | 0 B | 0 |
|
|
| File | 0 B | 0 |
|
|
| rpmdeps | File | 11.52 KB | 0755 |
|
| rpmpopt-4.11.3 | File | 9.51 KB | 0644 |
|
| rpmrc | File | 15.01 KB | 0644 |
|
| script.req | File | 322 B | 0755 |
|
| sepdebugcrcfix | File | 15.24 KB | 0755 |
|
| tcl.req | File | 2.02 KB | 0755 |
|
| tgpg | File | 929 B | 0755 |
|