Hackfut Security File Manager
Current Path:
/lib/rpm
lib
/
rpm
/
📁
..
📄
alt-nodejs10_native.req
(70 B)
📄
alt-nodejs11_native.req
(70 B)
📄
alt-nodejs12_native.req
(70 B)
📄
alt-nodejs14_native.req
(70 B)
📄
alt-nodejs16_native.req
(40 B)
📄
alt-nodejs18_native.req
(40 B)
📄
alt-nodejs19_native.req
(39 B)
📄
alt-nodejs20_native.req
(40 B)
📄
alt-nodejs9_native.req
(68 B)
📄
brp-compress
(1.47 KB)
📄
brp-java-gcjcompile
(1.38 KB)
📄
brp-python-bytecompile
(3.78 KB)
📄
brp-python-hardlink
(632 B)
📄
brp-scl-compress
(1.77 KB)
📄
brp-scl-python-bytecompile
(3.04 KB)
📄
brp-strip
(428 B)
📄
brp-strip-comment-note
(741 B)
📄
brp-strip-shared
(706 B)
📄
brp-strip-static-archive
(494 B)
📄
check-buildroot
(1.25 KB)
📄
check-files
(1.02 KB)
📄
check-prereqs
(418 B)
📄
check-rpaths
(1.01 KB)
📄
check-rpaths-worker
(4.94 KB)
📄
config.guess
(43.13 KB)
📄
config.sub
(35.55 KB)
📄
debugedit
(46.57 KB)
📄
debuginfo.prov
(375 B)
📄
desktop-file.prov
(602 B)
📄
elfdeps
(16.38 KB)
📁
fileattrs
📄
find-debuginfo.sh
(19.58 KB)
📄
find-lang.sh
(8.04 KB)
📄
find-provides
(91 B)
📄
find-requires
(91 B)
📄
fontconfig.prov
(489 B)
📄
kabi.sh
(468 B)
📄
kmod.prov
(682 B)
📄
libtooldeps.sh
(718 B)
📄
macros
(42.96 KB)
📁
macros.d
📄
macros.perl
(473 B)
📄
macros.php
(192 B)
📄
macros.python
(906 B)
📄
metainfo.prov
(438 B)
📄
mkinstalldirs
(3.46 KB)
📄
mono-find-provides
(1.08 KB)
📄
mono-find-requires
(1.87 KB)
📄
nodejs_native.req
(70 B)
📄
ocaml-find-provides.sh
(1.62 KB)
📄
ocaml-find-requires.sh
(2.08 KB)
📄
perl.prov
(6.01 KB)
📄
perl.req
(12.63 KB)
📄
pkgconfigdeps.sh
(1.34 KB)
📁
platform
📄
python-macro-helper
(634 B)
📄
pythondeps.sh
(921 B)
📄
pythondistdeps.py
(10.92 KB)
📁
redhat
📄
rpm.daily
(296 B)
📄
rpm.log
(61 B)
📄
rpm.supp
(688 B)
📄
rpm2cpio.sh
(1.22 KB)
📄
rpmdb_dump
(0 B)
📄
rpmdb_load
(0 B)
📄
rpmdb_loadcvt
(1.43 KB)
📄
rpmdb_recover
(0 B)
📄
rpmdb_stat
(0 B)
📄
rpmdb_upgrade
(0 B)
📄
rpmdb_verify
(0 B)
📄
rpmdeps
(16.94 KB)
📄
rpmpopt-4.14.3
(11.2 KB)
📄
rpmrc
(16.75 KB)
📄
scldeps.sh
(254 B)
📄
script.req
(322 B)
📄
sepdebugcrcfix
(15.85 KB)
📄
tgpg
(929 B)
Editing: mkinstalldirs
#! /bin/sh # mkinstalldirs --- make directory hierarchy scriptversion=2018-03-07.03; # UTC # 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 'before-save-hook 'time-stamp) # time-stamp-start: "scriptversion=" # time-stamp-format: "%:y-%02m-%02d.%02H" # time-stamp-time-zone: "UTC0" # time-stamp-end: "; # UTC" # End:
Upload File
Create Folder