]> njoseph.me Git - babashka-scripts.git/blobdiff - README.md
Add .lsp/ folder to .gitignore
[babashka-scripts.git] / README.md
index f02c678c1394f4d6d4152a2e505de2710c0a95dd..8cbda0831e1edd27e853e754bedc9070dd765329 100644 (file)
--- a/README.md
+++ b/README.md
@@ -1,27 +1,33 @@
 # Babashka Scripts
 
-Miscellaneous [babashka](https://babashka.org "babashka website") scripts I wrote for my own personal use.
+Miscellaneous [babashka](https://babashka.org "babashka website") scripts written for my own personal use.
 
 ## Requirements
 
-babashka (>= 0.2.9)
+babashka (>= 0.4.0)
 
 ## Usage
 
 Clone this repository.
 
 ``` sh
-cd ~/dev
 git clone https://njoseph.me/gitweb/babashka-scripts.git
 ```
 
-Add the following lines to your shell configuration file.
+The list of available commands can be found by running `bb tasks` in the directory where the file `bb.edn` is present.
 
 ``` sh
-export BABASHKA_PRELOADS='(load-file (str (System/getProperty "user.home") "/dev/babashka-scripts/lib.clj"))'
-export PATH=$PATH:$HOME/dev/babashka-scripts
+The following tasks are available:
+
+gup                Do a git pull and rebase branch with master in a given directory.
+gpa                Runs `git pull` on all the git repositories in a given directory.
+ebook-to-audiobook A utility to listen to your ebooks using TTS programs. Only tested on macOS with epub files.
+install-deb        Install a Debian package given a direct URL to the .deb file.
+install-deb-gh     Install a Debian package given a GitHub URL.
 ```
 
-## Organization
+Some tasks can also take arguments.
 
-`lib.clj` contains functions that the other scripts might use. It must be loaded first.
+``` sh
+bb ebook-to-audiobook the-great-gatsby.epub
+```