20 lines
322 B
Plaintext
20 lines
322 B
Plaintext
source ${srcdir}/lib/library.exp
|
|
|
|
|
|
proc completion_exit {} {
|
|
# Exit bash
|
|
send "\rexit\r"
|
|
}; # completion_exit()
|
|
|
|
|
|
proc completion_start {} {
|
|
start_bash
|
|
source_bash_completion
|
|
init_tcl_bash_globals
|
|
}; # completion_start()
|
|
|
|
|
|
proc completion_version {} {
|
|
puts "$::TESTDIR, bash-$::BASH_VERSION"
|
|
}
|