renlog

Crates.iorenlog
lib.rsrenlog
version0.1.0
created_at2025-11-15 05:31:38.879519+00
updated_at2025-11-15 05:31:38.879519+00
descriptionA tool to record all terminal output.
homepage
repository
max_upload_size
id1934064
size152,287
Akira Kawata (akawashiro)

documentation

README

renlog - Rust Implementation of Zenlog

renlog is a Rust re-implementation of Zenlog.

Install

git clone git@github.com:akawashiro/renlog.git
cd renlog
cargo install --path .

Shell Configuration

Zsh Configuration

Add the following to your ~/.zshrc to automatically start renlog when opening a new shell:

if which renlog > /dev/null 2>&1; then
    if [[ "$(ps -o comm= -p $PPID)" != "renlog" ]]; then
        renlog_dir=/tmp/renlog
        exec renlog --log-level info log --renlog-dir ${renlog_dir} --cmd 'zsh -l'
    else
        eval "$(renlog show-zsh-rc)"
    fi
fi
Commit count: 0

cargo fmt