summaryrefslogtreecommitdiffstats
path: root/completions/ecryptfs-migrate-home
blob: 7566d6bf1768890e8b0d8ad08081e4350f55f17a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# ecryptfs-migrate-home(8) completion                      -*- shell-script -*-

_comp_cmd_ecryptfs_migrate_home()
{
    local cur prev words cword comp_args
    _comp_initialize -- "$@" || return

    case $prev in
        --help)
            return
            ;;
        --user | -u)
            _comp_compgen -- -u
            return
            ;;
    esac

    _comp_compgen_help
} &&
    complete -F _comp_cmd_ecryptfs_migrate_home ecryptfs-migrate-home

# ex: filetype=sh