bti

Langue: en

Version: May 2008 (ubuntu - 07/07/09)

Section: 1 (Commandes utilisateur)

NAME

bti - send a tweet to twitter.com or identi.ca from the command line

SYNOPSIS

bti [--account account] [--password password] [--host HOST_NAME] [--bash] [--debug] [--version] [--help]

DESCRIPTION

bti sends a tweet message to twitter.com or identi.ca.

OPTIONS

--account account

Specify the twitter.com or identi.ca account name.

--password password

Specify the password of your twitter.com or identi.ca account.

--host HOST_NAME

Specify the host which you want to send your message to. Valid options are "twitter" to send to twitter.com and "identica" to send to identi.ca.
If no host is specified, the default is to send to twitter.com.

--debug

Print a whole bunch of debugging messages to stdout.

--bash

Add the working directory and a '$' in the tweet message to help specify it is coming from a command line. Don't put the working directory and the '$' in the tweet message.
This mode also does not report back any errors that might have happened when sending the message, and it sends it in the background, returning immediately, allowing the process to continue on.

--version

Print version number.

--help

Print help text.

DESCRIPTION

bti provides an easy way to send tweet messages direct from the command line or any script. It reads the message on standard input and uses the account and password settings either from the command line options, or from a config file, to send the message out.

It's primary focus is to allow you to log everything that you type into a bash shell, in a crazy, "this is what I'm doing right now!" type of way, letting the world follow along with you constant moving between directories and refreshing your email queue to see if there's anything interesting going on.

To hook bti up to your bash shell, export the following variable:

PROMPT_COMMAND='history 1 | sed -e "s/^\s*[0-9]*\s*//" | bti --bash'

This example assumes that you have the ~/.bti set up with your account and password information already in it, otherwise you can specify them as an option.

CONFIGURATION

The account and password can be stored in a configuration file in the users home directory in a file named .bti The structure of this file is as follows:

account

The twitter.com or identi.ca account name you wish to use to send this message with.

password

The twitter.com or identi.ca password for the account you wish to use to send this message with.

host

The host you want to use to send the message to. Valid options are either "twitter" or "identica" to send to twitter.com or identi.ca respectively.

There is an example config file in /usr/share/doc/bti/examples/bti.example that shows the structure of the file.

AUTHOR

Written by Greg Kroah-Hartman <greg@kroah.com>.