Skip to main content

atuin search

Atuin search supports wildcards, with either the * or % character. By default, a prefix search is performed (ie, all queries are automatically appended with a wildcard).

ArgDescription
--cwd/-cThe directory to list history for (default: all dirs)
--exclude-cwdDo not include commands that ran in this directory (default: none)
--exit/-eFilter by exit code (default: none)
--exclude-exitDo not include commands that exited with this value (default: none)
--beforeOnly include commands ran before this time(default: none)
--afterOnly include commands ran after this time(default: none)
--interactive/-iOpen the interactive search UI (default: false)
--humanUse human-readable formatting for the timestamp and duration (default: false)

Examples

# Open the interactive search TUI
atuin search -i

# Open the interactive search TUI preloaded with a query
atuin search -i atuin

# Search for all commands, beginning with cargo, that exited successfully
atuin search --exit 0 cargo

# Search for all commands, that failed, from the current dir, and were ran before April 1st 2021
atuin search --exclude-exit 0 --before 01/04/2021 --cwd .

# Search for all commands, beginning with cargo, that exited successfully, and were ran after yesterday at 3pm
atuin search --exit 0 --after "yesterday 3pm" cargo