]> git.ipfire.org Git - thirdparty/util-linux.git/blame - bash-completion/fsfreeze
su: use lib/pty-session.c code for --pty
[thirdparty/util-linux.git] / bash-completion / fsfreeze
CommitLineData
c6f8c3f5
SK
1_fsfreeze_module()
2{
d4f9b8d7 3 local cur prev OPTS
c6f8c3f5
SK
4 COMPREPLY=()
5 cur="${COMP_WORDS[COMP_CWORD]}"
d4f9b8d7
VS
6 prev="${COMP_WORDS[COMP_CWORD-1]}"
7 case $prev in
8 '-h'|'--help'|'-V'|'--version')
9 return 0
10 ;;
11 esac
c6f8c3f5
SK
12 case $cur in
13 -*)
0d5b9b8a 14 OPTS="--freeze --unfreeze --help --version"
c6f8c3f5
SK
15 COMPREPLY=( $(compgen -W "${OPTS[*]}" -- $cur) )
16 return 0
17 ;;
18 esac
19 local MPOINT
20 MPOINT="$(findmnt -t ext2,ext3,ext4,reiserfs,jfs,xfs -o TARGET -n -r)"
21 COMPREPLY=( $(compgen -W "$MPOINT" -- $cur) )
22 return 0
23}
24complete -F _fsfreeze_module fsfreeze