Linux server.flyproject.com.br 3.10.0-1160.el7.x86_64 #1 SMP Mon Oct 19 16:18:59 UTC 2020 x86_64
Apache
: 207.244.227.86 | : 216.73.217.1
10 Domain
7.1.33
hubnog
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
etc /
bash_completion.d /
[ HOME SHELL ]
Name
Size
Permission
Action
bpftool
14.82
KB
-rw-r--r--
createrepo
4.35
KB
-rw-r--r--
fcoeadm
1.97
KB
-rw-r--r--
fcoemon
911
B
-rw-r--r--
genpkgmetadata.py
4.35
KB
-rw-r--r--
git
54.86
KB
-rw-r--r--
gluster
11.25
KB
-rwxr--r--
ipa
1001
B
-rwxr-xr-x
iprutils
829
B
-rw-r--r--
itweb-settings.bash
346
B
-rw-r--r--
javaws.bash
1011
B
-rw-r--r--
lldpad
1.07
KB
-rw-r--r--
lldptool
2.53
KB
-rw-r--r--
mergerepo
4.35
KB
-rw-r--r--
mergerepo.py
4.35
KB
-rw-r--r--
modifyrepo
4.35
KB
-rw-r--r--
modifyrepo.py
4.35
KB
-rw-r--r--
policyeditor.bash
332
B
-rw-r--r--
redefine_filedir
1.42
KB
-rw-r--r--
scl.bash
1.49
KB
-rw-r--r--
yum-utils.bash
11.01
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : modifyrepo
# bash completion for createrepo and friends _cr_compress_type() { COMPREPLY=( $( compgen -W "$( ${1:-createrepo} --compress-type=FOO / 2>&1 \ | sed -ne 's/,/ /g' -ne 's/.*[Cc]ompression.*://p' )" -- "$2" ) ) } _cr_checksum_type() { COMPREPLY=( $( compgen -W 'md5 sha1 sha256 sha512' -- "$1" ) ) } _cr_createrepo() { COMPREPLY=() case $3 in --version|-h|--help|-u|--baseurl|--distro|--content|--repo|\ --revision|-x|--excludes|--changelog-limit|--max-delta-rpm-size) return 0 ;; --basedir|-c|--cachedir|--update-md-path|-o|--outputdir|\ --oldpackagedirs) COMPREPLY=( $( compgen -d -- "$2" ) ) return 0 ;; -g|--groupfile) COMPREPLY=( $( compgen -f -o plusdirs -X '!*.xml' -- "$2" ) ) return 0 ;; -s|--checksum) _cr_checksum_type "$2" return 0 ;; -i|--pkglist|--read-pkgs-list) COMPREPLY=( $( compgen -f -o plusdirs -- "$2" ) ) return 0 ;; -n|--includepkg) COMPREPLY=( $( compgen -f -o plusdirs -X '!*.rpm' -- "$2" ) ) return 0 ;; --retain-old-md) COMPREPLY=( $( compgen -W '0 1 2 3 4 5 6 7 8 9' -- "$2" ) ) return 0 ;; --num-deltas) COMPREPLY=( $( compgen -W '1 2 3 4 5 6 7 8 9' -- "$2" ) ) return 0 ;; --workers) local min=2 max=$( getconf _NPROCESSORS_ONLN 2>/dev/null ) [[ -z $max || $max -lt $min ]] && max=$min COMPREPLY=( $( compgen -W "{1..$max}" -- "$2" ) ) return 0 ;; --compress-type) _cr_compress_type "$1" "$2" return 0 ;; esac if [[ $2 == -* ]] ; then COMPREPLY=( $( compgen -W '--version --help --quiet --verbose --profile --excludes --basedir --baseurl --groupfile --checksum --pretty --cachedir --checkts --no-database --update --update-md-path --skip-stat --split --pkglist --includepkg --outputdir --skip-symlinks --changelog-limit --unique-md-filenames --simple-md-filenames --retain-old-md --distro --content --repo --revision --deltas --oldpackagedirs --num-deltas --read-pkgs-list --max-delta-rpm-size --workers --compress-type' -- "$2" ) ) else COMPREPLY=( $( compgen -d -- "$2" ) ) fi } && complete -F _cr_createrepo -o filenames createrepo genpkgmetadata.py _cr_mergerepo() { COMPREPLY=() case $3 in --version|-h|--help|-a|--archlist) return 0 ;; -r|--repo|-o|--outputdir) COMPREPLY=( $( compgen -d -- "$2" ) ) return 0 ;; --compress-type) _cr_compress_type "" "$2" return 0 ;; esac COMPREPLY=( $( compgen -W '--version --help --repo --archlist --no-database --outputdir --nogroups --noupdateinfo --compress-type' -- "$2" ) ) } && complete -F _cr_mergerepo -o filenames mergerepo mergerepo.py _cr_modifyrepo() { COMPREPLY=() case $3 in --version|-h|--help|--mdtype) return 0 ;; --compress-type) _cr_compress_type "" "$2" return 0 ;; -s|--checksum) _cr_checksum_type "$2" return 0 ;; esac if [[ $2 == -* ]] ; then COMPREPLY=( $( compgen -W '--version --help --mdtype --remove --compress --no-compress --compress-type --checksum --unique-md-filenames --simple-md-filenames' -- "$2" ) ) return 0 fi local i argnum=1 for (( i=1; i < ${#COMP_WORDS[@]}-1; i++ )) ; do if [[ ${COMP_WORDS[i]} != -* && ${COMP_WORDS[i-1]} != @(=|--@(md|compress-)type) ]]; then argnum=$(( argnum+1 )) fi done case $argnum in 1) COMPREPLY=( $( compgen -f -o plusdirs -- "$2" ) ) return 0 ;; 2) COMPREPLY=( $( compgen -d -- "$2" ) ) return 0 ;; esac } && complete -F _cr_modifyrepo -o filenames modifyrepo modifyrepo.py # Local variables: # mode: shell-script # sh-basic-offset: 4 # sh-indent-comment: t # indent-tabs-mode: nil # End: # ex: ts=4 sw=4 et filetype=sh
Close