| Server IP : 195.134.90.114 / Your IP : 216.73.217.25 Web Server : Apache/2.4.58 System : Linux nepub 6.8.0-88-generic #89-Ubuntu SMP PREEMPT_DYNAMIC Sat Oct 11 01:02:46 UTC 2025 x86_64 User : www-data ( 33) PHP Version : 8.2.30 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /usr/share/bash-completion/completions/ |
Upload File : |
# udisksctl(1) completion -*- shell-script -*-
_udisksctl() {
local IFS=$'\n'
local cur=`_get_cword :`
local suggestions=$(udisksctl complete "${COMP_LINE}" ${COMP_POINT})
if [ "$suggestions" = "@FILES@" ] ; then
_filedir
else
COMPREPLY=($(compgen -W "$suggestions" -- "$cur"))
fi
# Remove colon-word prefix from COMPREPLY items
case "$cur" in
*:*)
case "$COMP_WORDBREAKS" in
*:*)
local colon_word=${cur%${cur##*:}}
local i=${#COMPREPLY[*]}
while [ $((--i)) -ge 0 ]; do
COMPREPLY[$i]=${COMPREPLY[$i]#"$colon_word"}
done
;;
esac
;;
esac
} &&
complete -o nospace -F _udisksctl udisksctl