HEX
Server: Apache
System: Linux info 3.0 #1337 SMP Tue Jan 01 00:00:00 CEST 2000 all GNU/Linux
User: ws67385642 (67385642)
PHP: 8.3.30
Disabled: NONE
Upload Files
File: //kunden/proc/thread-self/root/usr/share/bash-completion/completions/ecryptfs-migrate-home
# ecryptfs-migrate-home(8) completion                      -*- shell-script -*-

_ecryptfs_migrate_home()
{
    local cur prev words cword
    _init_completion || return

    case $prev in
        --help)
            return
            ;;
        --user | -u)
            COMPREPLY=($(compgen -u -- "$cur"))
            return
            ;;
    esac

    COMPREPLY=($(compgen -W '$(_parse_help "$1")' -- "$cur"))
} &&
    complete -F _ecryptfs_migrate_home ecryptfs-migrate-home

# ex: filetype=sh