X7ROOT File Manager
Current Path:
/etc/bash_completion.d
etc
/
bash_completion.d
/
📁
..
📄
aws_bash_completer
(204 B)
📄
createrepo
(4.35 KB)
📄
fcoeadm
(1.97 KB)
📄
fcoemon
(911 B)
📄
genpkgmetadata.py
(4.35 KB)
📄
git
(54.86 KB)
📄
gluster
(11.25 KB)
📄
iprutils
(829 B)
📄
itweb-settings.bash
(346 B)
📄
javaws.bash
(1011 B)
📄
lldpad
(1.07 KB)
📄
lldptool
(2.53 KB)
📄
mergerepo
(4.35 KB)
📄
mergerepo.py
(4.35 KB)
📄
modifyrepo
(4.35 KB)
📄
modifyrepo.py
(4.35 KB)
📄
policyeditor.bash
(332 B)
📄
redefine_filedir
(1.42 KB)
📄
scl.bash
(1.49 KB)
📄
yum-utils.bash
(11.01 KB)
Editing: iprutils
# IBM IPR adapter configuration utility # # (C) Copyright 2000, 2015 # International Business Machines Corporation and others. # All Rights Reserved. This program and the accompanying # materials are made available under the terms of the # Common Public License v1.0 which accompanies this distribution. _comp_iprconfig () { iprconfig="${COMP_WORDS[0]}" cur="${COMP_WORDS[COMP_CWORD]}" prev="${COMP_WORDS[COMP_CWORD-1]}" case "${prev}" in "-c") opts=$(${iprconfig} -l 2>/dev/null) COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) ) ;; "-k") COMPREPLY=( $(compgen -o dirnames -- ${cur}) ) ;; *) opts=$(find /dev -printf "%f\n" | grep -G "^\(sd\|sg\)") COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) ) ;; esac return 0; } complete -F _comp_iprconfig iprconfig
Upload File
Create Folder