X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=blobdiff_plain;f=bash_completion;h=a9947b74edfe12d79cb6f619142e0da4a67a0253;hp=cd647e2096b61ce583a4bd48318484cb814762e9;hb=4867d9a4948aadde4dd59436e1c5fb0fc141ba89;hpb=3cfb1d880ebf22546486316cb74cce21f007eb07 diff --git a/bash_completion b/bash_completion index cd647e20..a9947b74 100644 --- a/bash_completion +++ b/bash_completion @@ -40,14 +40,14 @@ __para_complete_command() __para_complete_table() { if test -z "$__para_table_list"; then - __para_table_list="$(ls $HOME/.paraslash/afs_database/)" + __para_table_list="$(ls $HOME/.paraslash/afs_database-0.4/)" fi echo "$__para_table_list" } __para_complete_sender() { if test -z "$__para_sender_list"; then - __para_sender_list="$($PC si | grep "supported senders:" | sed -e 's/.*: //')" + __para_sender_list="$($PC si | grep '^.* sender:$' | sed -e 's/ sender://')" fi echo "$__para_sender_list" }