shellbuddy is a buttler for shell handling. It will track all used cwds and commands from history and will put it into a sqlite database with time and prio and provide them to the user via an interactive prompt.
go build -o shellbuddy *.go
Afterwards you need to copy the binary to a destination that is in your path. A.E.:
sudo cp shellbuddy /usr/bin/
For the first run you need to init the configuration files:
shellbuddy -init
This will create a folder unter ~/.shellbuddy with a configuration file. Edit this file to your needs according the comments.
For the shells you've to include the command to your prompt to update it on a frequent basis. The easiest way is to source the predefined functions and prompt variables from the included files.
Add the following line to the end of your .bashrc (with the full path to the file):
. "shells/bash_include.sh"
Add the following line to the end of your .bashrc (with the full path to the file):
. "shells/zsh_include.sh"
Usage of shellbuddy:
-add
Adding / Updating entries in the database
-config string
Configuration file to use. Defaults to ~/.shellbuddy/config (default "/home/mfulz/.shellbuddy/config")
-entries string
Select type of entries. Can be provided as comma seperated list ("dirs,commands"). If omitted all entries will be used
-history string
Specify the path to the shell's history file. Normally this will be detected automatically.
-init
Initialize configuration
-search string
Select entries by search string
-shell string
Specify the desired shell ("bash" or "zsh"). Normally this will be detected automatically.
-stdin
Write directly to the shell's input buffer via ioctl
-stdinpre string
Add this text to the input buffer before the output