From 5252227bd949c765ff610b8a8ce53c134a300612 Mon Sep 17 00:00:00 2001 From: Amir Mohammad Saied Date: Wed, 4 Mar 2009 12:13:45 +0330 Subject: [PATCH] Updating bashcompletion and example config file for new actions --- bti-bashcompletion | 4 ++-- bti.example | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/bti-bashcompletion b/bti-bashcompletion index 79e5cda..3b0f4d4 100644 --- a/bti-bashcompletion +++ b/bti-bashcompletion @@ -7,7 +7,7 @@ _bti() if [[ "${cur}" == -* ]] ; then COMPREPLY=( $(compgen -W "-a -A -p -P -H -b -d -v -h --account --action --password --proxy --host --bash \ - --debug --version --help" -- ${cur}) ) + --user --debug --version --help" -- ${cur}) ) fi if [[ "${prev}" == "--host" ]] ; then @@ -15,7 +15,7 @@ _bti() fi if [[ "${prev}" == "--action" ]] ; then - COMPREPLY=( $(compgen -W "friends public update" -- ${cur} ) ) + COMPREPLY=( $(compgen -W "friends public update user replies" -- ${cur} ) ) fi return 0 diff --git a/bti.example b/bti.example index 0cdf9b9..e4bbad8 100644 --- a/bti.example +++ b/bti.example @@ -8,4 +8,5 @@ password=icanhascheezburger host=identica logfile=.bti.log #action=update +#user=gregkh #proxy=http://localhost:8080 -- 2.39.5