4a135b33b7
* upgraded to subversion bash completion script shipped with subversion 1.6.17 * added git bash completion script shipped with git 1.7.5.4 * readded bash completion to the image git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@42257 a95241bf-73f2-0310-859d-f6bbb57e9c96
258 lines
5.4 KiB
Bash
258 lines
5.4 KiB
Bash
# bash completion for quota-tools
|
|
|
|
have quota && {
|
|
_user_or_group()
|
|
{
|
|
local i
|
|
|
|
# complete on groups if -g was given
|
|
for (( i=1; i < COMP_CWORD; i++ )); do
|
|
if [[ "${COMP_WORDS[i]}" == -g ]]; then
|
|
COMPREPLY=( $( compgen -g -- "$cur" ) )
|
|
return 0
|
|
fi
|
|
done
|
|
|
|
# otherwise complete on users
|
|
COMPREPLY=( $( compgen -u -- "$cur" ) )
|
|
}
|
|
|
|
_quota_formats()
|
|
{
|
|
COMPREPLY=( $( compgen -W 'vfsold vfsv0 rpc xfs' -- "$cur" ) )
|
|
}
|
|
|
|
_filesystems()
|
|
{
|
|
# Only list filesystems starting with "/", otherwise we also get
|
|
#+ "binfmt_misc", "proc", "tmpfs", ...
|
|
COMPREPLY=( $( compgen -W "$(awk '/^\// {print $1}' /etc/mtab)" \
|
|
-- "$cur" ) )
|
|
}
|
|
|
|
_quota()
|
|
{
|
|
local cur prev split=false
|
|
|
|
COMPREPLY=()
|
|
_get_comp_words_by_ref cur prev
|
|
|
|
_split_longopt && split=true
|
|
|
|
case $prev in
|
|
-F|--format)
|
|
_quota_formats
|
|
return 0
|
|
;;
|
|
esac
|
|
|
|
$split && return 0
|
|
|
|
if [[ "$cur" == -* ]]; then
|
|
COMPREPLY=( $( compgen -W '-F --format -g --group -u --user -v \
|
|
--verbose -s --human-readable -p --raw-grace -i --no-autofs -l \
|
|
--local-only -A --all-nfs -m --no-mixed-pathnames -q --quiet -Q \
|
|
--quiet-refuse -w --no-wrap' -- "$cur" ) )
|
|
else
|
|
_user_or_group
|
|
fi
|
|
}
|
|
complete -F _quota -o default quota
|
|
|
|
_setquota()
|
|
{
|
|
local cur prev split=false
|
|
|
|
COMPREPLY=()
|
|
_get_comp_words_by_ref cur prev
|
|
|
|
_split_longopt && split=true
|
|
|
|
case $prev in
|
|
-F|--format)
|
|
_quota_formats
|
|
return 0
|
|
;;
|
|
esac
|
|
|
|
$split && return 0
|
|
|
|
if [[ "$cur" == -* ]]; then
|
|
COMPREPLY=( $( compgen -W '-r --remote -m --no-mixed-pathnames \
|
|
-F --format -g --group -u --user -p --prototype -b --batch \
|
|
-c --continue-batch -t --edit-period -T --edit-times -a --all' \
|
|
-- "$cur" ) )
|
|
else
|
|
_count_args
|
|
|
|
case $args in
|
|
1)
|
|
_user_or_group
|
|
;;
|
|
2)
|
|
_filesystems
|
|
;;
|
|
esac
|
|
|
|
fi
|
|
}
|
|
complete -F _setquota -o default setquota
|
|
|
|
_edquota()
|
|
{
|
|
local cur prev split=false
|
|
|
|
COMPREPLY=()
|
|
_get_comp_words_by_ref cur prev
|
|
|
|
_split_longopt && split=true
|
|
|
|
case $prev in
|
|
-F|--format)
|
|
_quota_formats
|
|
return 0
|
|
;;
|
|
-f|--filesystem)
|
|
_filesystems
|
|
return 0
|
|
;;
|
|
esac
|
|
|
|
$split && return 0
|
|
|
|
if [[ "$cur" == -* ]]; then
|
|
COMPREPLY=( $( compgen -W '-r --remote -m --no-mixed-pathnames \
|
|
-g --group -u --user -p --prototype -F --format -f --filesystem \
|
|
-t --edit-period -T --edit-times' -- "$cur" ) )
|
|
else
|
|
_user_or_group
|
|
fi
|
|
}
|
|
complete -F _edquota -o default edquota
|
|
|
|
_quotacheck()
|
|
{
|
|
local cur prev split=false
|
|
|
|
COMPREPLY=()
|
|
_get_comp_words_by_ref cur prev
|
|
|
|
_split_longopt && split=true
|
|
|
|
case $prev in
|
|
-F|--format)
|
|
_quota_formats
|
|
return 0
|
|
;;
|
|
esac
|
|
|
|
$split && return 0
|
|
|
|
if [[ "$cur" == -* ]]; then
|
|
COMPREPLY=( $( compgen -W '-b --backup -v --verbose -d --debug \
|
|
-g --group -u --user -c --create-files -f --force -i \
|
|
--interactive -n --use-first-dquot -M --try-remount -m \
|
|
--no-remount -R --exclude-root -F --format -a --all' -- "$cur" ) )
|
|
else
|
|
_filesystems
|
|
fi
|
|
}
|
|
complete -F _quotacheck -o default quotacheck
|
|
|
|
_repquota()
|
|
{
|
|
local cur prev split=false
|
|
|
|
COMPREPLY=()
|
|
_get_comp_words_by_ref cur prev
|
|
|
|
_split_longopt && split=true
|
|
|
|
case $prev in
|
|
-F|--format)
|
|
_quota_formats
|
|
return 0
|
|
;;
|
|
esac
|
|
|
|
$split && return 0
|
|
|
|
if [[ "$cur" == -* ]]; then
|
|
COMPREPLY=( $( compgen -W '-a --all -v --verbose -s --human-readable \
|
|
-c --batch-translation -C --no-batch-translation -t \
|
|
--truncate-names -n --no-names -p --raw-grace -i --no-autofs \
|
|
-u --user -g --group -F --format' -- "$cur" ) )
|
|
else
|
|
_filesystems
|
|
fi
|
|
}
|
|
complete -F _repquota -o default repquota
|
|
|
|
_quotaon()
|
|
{
|
|
local cur prev split=false
|
|
|
|
COMPREPLY=()
|
|
_get_comp_words_by_ref cur prev
|
|
|
|
_split_longopt && split=true
|
|
|
|
case $prev in
|
|
-F|--format)
|
|
_quota_formats
|
|
return 0
|
|
;;
|
|
esac
|
|
|
|
$split && return 0
|
|
|
|
if [[ "$cur" == -* ]]; then
|
|
COMPREPLY=( $( compgen -W '-a --all -v --verbose -u --user \
|
|
-g --group -f --off -p --print-state -F --format' -- "$cur" ) )
|
|
else
|
|
_filesystems
|
|
fi
|
|
}
|
|
complete -F _quotaon -o default quotaon
|
|
|
|
_quotaoff()
|
|
{
|
|
local cur prev split=false
|
|
|
|
COMPREPLY=()
|
|
_get_comp_words_by_ref cur prev
|
|
|
|
_split_longopt && split=true
|
|
|
|
case $prev in
|
|
-F|--format)
|
|
_quota_formats
|
|
return 0
|
|
;;
|
|
-x|--xfs-command)
|
|
COMPREPLY=( $( compgen -W 'delete enforce' -- "$cur" ) )
|
|
return 0
|
|
;;
|
|
esac
|
|
|
|
$split && return 0
|
|
|
|
if [[ "$cur" == -* ]]; then
|
|
COMPREPLY=( $( compgen -W '-a --all -v --verbose -u --user \
|
|
-g --group -p --print-state -x --xfs-command -F --format' \
|
|
-- "$cur" ) )
|
|
else
|
|
_filesystems
|
|
fi
|
|
}
|
|
complete -F _quotaoff -o default quotaoff
|
|
}
|
|
|
|
# Local variables:
|
|
# mode: shell-script
|
|
# sh-basic-offset: 4
|
|
# sh-indent-comment: t
|
|
# indent-tabs-mode: nil
|
|
# End:
|
|
# ex: ts=4 sw=4 et filetype=sh
|