2 <!DOCTYPE article PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"
3 "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd">
12 <productname>bti</productname>
16 <refentrytitle>bti</refentrytitle>
17 <manvolnum>1</manvolnum>
18 <refmiscinfo class="version"></refmiscinfo>
22 <refname>bti</refname>
23 <refpurpose>send a tweet to twitter.com from the command line</refpurpose>
28 <command>bti</command>
29 <arg><option>--account account</option></arg>
30 <arg><option>--password password</option></arg>
31 <arg><option>--clean</option></arg>
32 <arg><option>--debug</option></arg>
33 <arg><option>--version</option></arg>
34 <arg><option>--help</option></arg>
38 <refsect1><title>DESCRIPTION</title>
39 <para>bti sends a twitter message to twitter.com.
43 <refsect1><title>OPTIONS</title>
46 <term><option>--account account</option></term>
49 Specify the twitter.com account name.
54 <term><option>--password password</option></term>
57 Specify the password of your twitter.com account.
62 <term><option>--debug</option></term>
64 <para>Print a whole bunch of debugging messages to stdout.</para>
68 <term><option>--clean</option></term>
70 <para>Don't put the working directory and the '$' in the twitter message.</para>
74 <term><option>--version</option></term>
76 <para>Print version number.</para>
80 <term><option>--help</option></term>
82 <para>Print help text.</para>
89 <title>DESCRIPTION</title>
91 bti provides an easy way to send twitter messages direct from the
92 command line or any script. It reads the message on standard
93 input and uses the account and password settings either from the
94 command line options, or from a config file, to send the message
98 It's primary focus is to allow you to log everything that you
99 type into a bash shell, in a crazy, "this is what I'm doing right
100 now!" type of way, letting the world follow along with you
101 constant moving between directories and refreshing your email
102 queue to see if there's anything interesting going on.
105 To hook bti up to your bash shell, export the following variable:
108 <literal> PROMPT_COMMAND='history 1 | sed -e "s/^\s*[0-9]*\s*//" | bti'</literal>
111 This example assumes that you have the
112 <filename>~/.bti</filename> set up with your account and password
113 information already in it, otherwise you can specify them as an
119 <title>CONFIGURATION</title>
121 The account and password can be stored in a configuration file
122 in the users home directory in a file named
123 <filename>.bti</filename> The structure of this file is as
128 <term><option>account</option></term>
131 The twitter.com account name you wish to use to send this
137 <term><option>password</option></term>
140 The twitter.com password for the account you wish to use
141 to send this message with.
147 There is an example config file called
148 <filename>bti.example</filename> in the source tree that shows
149 the structure of the file if you need an example to work off of.
153 <refsect1><title>AUTHOR</title>
154 <para>Written by Greg Kroah-Hartman <email>greg@kroah.com</email>.</para>