#shell-history #history #shell #sqlite #cli

app shi_history

A tiny program to add the time and place to your shell history. This also enables you to copy a command to the clipboard.

4 releases (breaking)

0.6.0 Apr 7, 2024
0.5.0 Dec 3, 2023
0.4.0 Dec 2, 2023
0.3.2 Apr 23, 2023

#836 in Command line utilities

Download history 1/week @ 2024-02-18 23/week @ 2024-02-25 177/week @ 2024-03-10 4/week @ 2024-03-17 9/week @ 2024-03-31 124/week @ 2024-04-07

140 downloads per month

MIT license

110KB
556 lines

shi

small history / 史

A tiny program to add the time and place to your shell history.
This also enables you to copy a command to the clipboard.

screenshot.png

Installation

You must have sqlite installed.

cargo install shi_history, or

git clone https://git.sr.ht/~kyoheiu/shi
cd shi
cargo install --path .

And add the preexec hook to your shell config file.

For bash:

(bash-preexec required. See https://github.com/rcaloras/bash-preexec)

source ~/.bash-preexec.sh
preexec() { shi --insert "$@"; }

For zsh or fish, you can use preexec hook.

Option

If you'd like to copy a command to the clipboard, set any clipboard utility such as xclip or wl-copy as $SHI_CLIP.

Usage

At the first launch, shi creates sqlite database in $XDG_DATA_HOME/shi/.history (on Linux, in most case it should be ~/.local/share/shi/.history).

shi [ROWS]                       Print executed commands and time. (Default: 50 rows)

Options:
  -a, --all                      Print all the history with the directory path where the command was executed
  -i, --insert <COMMAND>         Insert the command to the history
  -r, --remove <ID>              Delete the command that matches the id
  -p, --path <PATH> [ROWS]       Show commands that were executed in directories that match the query
  -c, --command <COMMAND> [ROWS] Show commands that match the query
  -o, --output                   Export all the history to `$XDG_DATA_HOME/shi/history.csv`
  --drop                         Drop the database table: Deleting all history

Dependencies

~3–13MB
~114K SLoC