2009-05-21 01:38:13 +02:00
|
|
|
# -*- mode: shell-script; sh-basic-offset: 8; indent-tabs-mode: t -*-
|
|
|
|
# ex: ts=8 sw=8 noet filetype=sh
|
|
|
|
#
|
|
|
|
# bash completion for GNU tar
|
|
|
|
|
2009-06-08 21:22:43 +03:00
|
|
|
have tar && {
|
2009-05-21 01:38:13 +02:00
|
|
|
_tar()
|
|
|
|
{
|
|
|
|
local cur ext regex tar untar
|
|
|
|
|
|
|
|
COMPREPLY=()
|
|
|
|
cur=`_get_cword`
|
|
|
|
|
|
|
|
if [ $COMP_CWORD -eq 1 ]; then
|
Quote unquoted $cur to prevent globbing.
Closes Alioth #311614
Globbing might occur if $cur contains one of these globbing characters: * ? [ ]
The bug becomes apparent:
On Cygwin if the glob-string contains backslashes as well, causing a warning (Cygwin >= 1.7):
MS-DOS style path detected: ...
Preferred POSIX equivalent is: ...
CYGWIN environment variable option "nodosfilewarning" turns off this warning.
Consult the user's guide for more details about POSIX paths:
http://cygwin.com/cygwin-ug-net/using.html#using-pathnames
On Linux, using strace, you can see bash-completion doing an unnecessary `open' system call.
Steps to reproduce on Linux using `strace':
Environment: Linux, bash-completion-1.0
1. Start bash with bash-completion loaded and find out PID ($$):
$ echo $$
MYPID
2. In a second bash shell, `strace' the above PID:
$ strace -e trace=open -f -o strace.log -p MYPID
3. Within the first bash shell, type:
$ cur="?"; _kernel_versions
4. In the second bash shell, type ^C to quick `strace'.
5. Check `strace.log', here you can see bash accessing
something it shouldn't:
...
open(".", O_RDONLY|O_NONBLOCK|O_LARGEFILE|O_DIRECTORY|O_CLOEXEC) = 3
...
6. The above call to `open' disappears if $cur in _kernel_versions gets
quoted, and you repeat the steps above:
_kernel_versions()
{
COMPREPLY=( $( compgen -W '$( command ls /lib/modules )' -- "$cur" ) )
}
2009-09-25 09:36:29 +02:00
|
|
|
COMPREPLY=( $( compgen -W 'c t x u r d A' -- "$cur" ) )
|
2009-05-21 01:38:13 +02:00
|
|
|
return 0
|
|
|
|
fi
|
|
|
|
|
|
|
|
case "${COMP_WORDS[1]}" in
|
|
|
|
?(-)[cr]*f)
|
|
|
|
_filedir
|
|
|
|
return 0
|
|
|
|
;;
|
|
|
|
+([^IZzJjy])f)
|
|
|
|
ext='t@(ar?(.@(Z|gz|bz?(2)|lz?(ma)))|gz|bz?(2)|lz?(ma))'
|
|
|
|
regex='t\(ar\(\.\(Z\|gz\|bz2\?\|lzma\|xz\)\)\?\|gz\|bz2\?\|lzma\|xz\)'
|
|
|
|
;;
|
|
|
|
*[Zz]*f)
|
|
|
|
ext='t?(ar.)@(gz|Z)'
|
|
|
|
regex='t\(ar\.\)\?\(gz\|Z\)'
|
|
|
|
;;
|
|
|
|
*[Ijy]*f)
|
|
|
|
ext='t?(ar.)bz?(2)'
|
|
|
|
regex='t\(ar\.\)\?bz2\?'
|
|
|
|
;;
|
|
|
|
*[J]*f)
|
|
|
|
ext='t?(ar.)@(lz?(ma)|xz)'
|
|
|
|
regex='t\(ar\.\)\?\(lzma\|xz\)\?'
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
_filedir
|
|
|
|
return 0
|
|
|
|
;;
|
|
|
|
|
|
|
|
esac
|
|
|
|
|
|
|
|
if [[ "$COMP_LINE" == *$ext' ' ]]; then
|
|
|
|
# complete on files in tar file
|
|
|
|
#
|
|
|
|
# get name of tar file from command line
|
|
|
|
tar=$( echo "$COMP_LINE" | \
|
|
|
|
sed -e 's/^.* \([^ ]*'$regex'\) .*$/\1/' )
|
|
|
|
# devise how to untar and list it
|
|
|
|
untar=t${COMP_WORDS[1]//[^Izjyf]/}
|
|
|
|
|
|
|
|
COMPREPLY=( $( compgen -W "$( echo $( tar $untar $tar \
|
|
|
|
2>/dev/null ) )" -- "$cur" ) )
|
|
|
|
return 0
|
|
|
|
fi
|
|
|
|
|
|
|
|
# file completion on relevant files
|
|
|
|
_filedir "$ext"
|
|
|
|
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
[ -n "${COMP_TAR_INTERNAL_PATHS:-}" ] && complete -F _tar $dirnames tar ||
|
|
|
|
complete -F _tar $filenames tar
|
2009-06-08 21:22:43 +03:00
|
|
|
}
|