From 5329e026dfb52f904965b687a717cc4c24f2cd8c Mon Sep 17 00:00:00 2001 From: cnlohr Date: Sat, 23 Jun 2018 14:17:42 -0400 Subject: Add autocomplete script. --- survive_autocomplete.sh | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100755 survive_autocomplete.sh (limited to 'survive_autocomplete.sh') diff --git a/survive_autocomplete.sh b/survive_autocomplete.sh new file mode 100755 index 0000000..0d56d47 --- /dev/null +++ b/survive_autocomplete.sh @@ -0,0 +1,15 @@ +#!/bin/bash + +#place this script in /etc/bash_completion.d/ for general use. +_script() +{ + _script_commands=$(./test -m $1 $2 $3) + local cur prev + COMPREPLY=() + cur="${COMP_WORDS[COMP_CWORD]}" + COMPREPLY=( $(compgen -W "${_script_commands}" -- ${cur}) ) + return 0 +} + +complete -o nospace -F _script ./calibrate +complete -o nospace -F _script ./simple_pose_test -- cgit v1.2.3