Apache/2.4.7 (Ubuntu) Linux sman1baleendah 3.13.0-24-generic #46-Ubuntu SMP Thu Apr 10 19:11:08 UTC 2014 x86_64 uid=33(www-data) gid=33(www-data) groups=33(www-data) safemode : OFF MySQL: ON | Perl: ON | cURL: OFF | WGet: ON > / usr / share / bash-completion / completions / | server ip : 104.21.89.46 your ip : 172.70.100.67 H O M E |
Filename | /usr/share/bash-completion/completions/valgrind |
Size | 3.41 kb |
Permission | rw-r--r-- |
Owner | root : root |
Create time | 27-Apr-2025 09:54 |
Last modified | 07-Apr-2014 22:10 |
Last accessed | 05-Jul-2025 20:38 |
Actions | edit | rename | delete | download (gzip) |
View | text | code | image |
# valgrind(1) completion -*- shell-script -*-
_valgrind()
{
local cur prev words cword split
_init_completion -s || return
local i
# Note: intentionally using COMP_WORDS and COMP_CWORD instead of
# words and cword here due to splitting on = causing index differences
# (_command_offset assumes the former).
for (( i=1; i <= COMP_CWORD; i++ )); do
if [[ ${COMP_WORDS[i]} != @([-=])* && ${COMP_WORDS[i-1]} != = ]]; then
_command_offset $i
return
fi
done
local tool
for (( i=1; i < ${#words[@]}; i++ )); do
if [[ ${words[i]} == --tool=?* ]]; then
tool=${words[i]}
break
fi
done
case $prev in
-h|--help|--help-debug|--version)
return
;;
--tool)
# Tools seem to be named e.g. like memcheck-amd64-linux from which
# we want to grab memcheck.
COMPREPLY=( $( compgen -W '$(
for f in /usr{,/local}/lib{,64}/valgrind/*; do
[[ $f != *.so && -x $f ]] &&
sed -ne "s/^.*\/\(.*\)-\([^-]*\)-\([^-]*\)/\1/p" <<<$f
done )' -- "$cur" ) )
return
;;
--sim-hints)
COMPREPLY=( $( compgen -W 'lax-ioctls enable-outer' -- "$cur" ) )
return
;;
--soname-synonyms)
COMPREPLY=( $( compgen -W 'somalloc' -S = -- "$cur" ) )
[[ $COMPREPLY == *= ]] && compopt -o nospace
return
;;
--kernel-variant)
COMPREPLY=( $( compgen -W 'bproc' -- "$cur" ) )
return
;;
# callgrind:
--callgrind-out-file)
_filedir
return
;;
# exp-dhat:
--sort-by)
COMPREPLY=( $( compgen -W 'max-bytes-live tot-bytes-allocd
max-blocks-live' -- "$cur" ) )
return
;;
# massif:
--time-unit)
COMPREPLY=( $( compgen -W 'i ms B' -- "$cur" ) )
return
;;
# generic cases parsed from --help output
--+([-A-Za-z0-9_]))
local value=$( $1 --help-debug $tool 2>/dev/null | \
sed -ne "s|^[$' \t']*$prev=\([^$' \t']\{1,\}\).*|\1|p" )
case $value in
\<file*\>)
_filedir
return
;;
\<command\>)
compopt -o filenames
COMPREPLY=( $( compgen -c -- "$cur" ) )
return
;;
\<+([0-9])..+([0-9])\>)
COMPREPLY=( $( compgen -W "{${value:1:((${#value}-2))}}" \
-- "$cur" ) )
return
;;
# "yes", "yes|no", etc (but not "string", "STR",
# "hint1,hint2,...")
yes|+([-a-z0-9])\|+([-a-z0-9\|]))
COMPREPLY=( $( IFS='|' compgen -W '$value' -- "$cur" ) )
return
;;
esac
;;
esac
$split && return
if [[ $cur == -* ]]; then
COMPREPLY=( $( compgen -W '$( _parse_help "$1" "--help $tool" )' \
-- "$cur" ) )
[[ $COMPREPLY == *= ]] && compopt -o nospace
return
fi
} &&
complete -F _valgrind valgrind
# ex: ts=4 sw=4 et filetype=sh
_valgrind()
{
local cur prev words cword split
_init_completion -s || return
local i
# Note: intentionally using COMP_WORDS and COMP_CWORD instead of
# words and cword here due to splitting on = causing index differences
# (_command_offset assumes the former).
for (( i=1; i <= COMP_CWORD; i++ )); do
if [[ ${COMP_WORDS[i]} != @([-=])* && ${COMP_WORDS[i-1]} != = ]]; then
_command_offset $i
return
fi
done
local tool
for (( i=1; i < ${#words[@]}; i++ )); do
if [[ ${words[i]} == --tool=?* ]]; then
tool=${words[i]}
break
fi
done
case $prev in
-h|--help|--help-debug|--version)
return
;;
--tool)
# Tools seem to be named e.g. like memcheck-amd64-linux from which
# we want to grab memcheck.
COMPREPLY=( $( compgen -W '$(
for f in /usr{,/local}/lib{,64}/valgrind/*; do
[[ $f != *.so && -x $f ]] &&
sed -ne "s/^.*\/\(.*\)-\([^-]*\)-\([^-]*\)/\1/p" <<<$f
done )' -- "$cur" ) )
return
;;
--sim-hints)
COMPREPLY=( $( compgen -W 'lax-ioctls enable-outer' -- "$cur" ) )
return
;;
--soname-synonyms)
COMPREPLY=( $( compgen -W 'somalloc' -S = -- "$cur" ) )
[[ $COMPREPLY == *= ]] && compopt -o nospace
return
;;
--kernel-variant)
COMPREPLY=( $( compgen -W 'bproc' -- "$cur" ) )
return
;;
# callgrind:
--callgrind-out-file)
_filedir
return
;;
# exp-dhat:
--sort-by)
COMPREPLY=( $( compgen -W 'max-bytes-live tot-bytes-allocd
max-blocks-live' -- "$cur" ) )
return
;;
# massif:
--time-unit)
COMPREPLY=( $( compgen -W 'i ms B' -- "$cur" ) )
return
;;
# generic cases parsed from --help output
--+([-A-Za-z0-9_]))
local value=$( $1 --help-debug $tool 2>/dev/null | \
sed -ne "s|^[$' \t']*$prev=\([^$' \t']\{1,\}\).*|\1|p" )
case $value in
\<file*\>)
_filedir
return
;;
\<command\>)
compopt -o filenames
COMPREPLY=( $( compgen -c -- "$cur" ) )
return
;;
\<+([0-9])..+([0-9])\>)
COMPREPLY=( $( compgen -W "{${value:1:((${#value}-2))}}" \
-- "$cur" ) )
return
;;
# "yes", "yes|no", etc (but not "string", "STR",
# "hint1,hint2,...")
yes|+([-a-z0-9])\|+([-a-z0-9\|]))
COMPREPLY=( $( IFS='|' compgen -W '$value' -- "$cur" ) )
return
;;
esac
;;
esac
$split && return
if [[ $cur == -* ]]; then
COMPREPLY=( $( compgen -W '$( _parse_help "$1" "--help $tool" )' \
-- "$cur" ) )
[[ $COMPREPLY == *= ]] && compopt -o nospace
return
fi
} &&
complete -F _valgrind valgrind
# ex: ts=4 sw=4 et filetype=sh