| Server IP : 37.9.174.138 / Your IP : 216.73.216.117 Web Server : Apache System : Linux vps6.backend.sk 6.12.100+deb13-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.12.100-1 (2026-07-30) x86_64 User : ftpuser ( 1001) PHP Version : 8.4.24 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /usr/share/bash-completion/completions/ |
Upload File : |
# bash completion for eject(1) -*- shell-script -*-
# Use of this file is deprecated on Linux. Upstream completion is
# available in util-linux >= 2.23, use that instead.
_comp_cmd_eject()
{
local cur prev words cword comp_args
_comp_initialize -- "$@" || return
case $prev in
-h | --help | -V | --version | -c | --changerslot | -x | --cdspeed)
return
;;
-a | --auto | -i | --manualeject)
_comp_compgen -- -W 'on off'
return
;;
esac
if [[ $cur == -* ]]; then
_comp_compgen_help
return
elif [[ $prev == @(-d|--default) ]]; then
return
fi
_comp_compgen_cd_devices
_comp_compgen -a dvd_devices
} &&
complete -F _comp_cmd_eject eject
# ex: filetype=sh