1
1
mirror of https://github.com/ellie/atuin.git synced 2024-09-11 21:18:22 +03:00
atuin/README.md

317 lines
8.2 KiB
Markdown
Raw Normal View History

2022-05-10 13:47:08 +03:00
<p align="center">
2023-12-12 12:43:22 +03:00
<img src="https://github.com/atuinsh/atuin/assets/53315310/08bc86d4-a781-4aaa-8d7e-478ae6bcd129" />
2022-05-10 13:47:08 +03:00
</p>
2021-02-14 19:23:08 +03:00
2021-04-26 13:59:00 +03:00
<p align="center">
<em>magical shell history</em>
</p>
2022-05-10 13:47:08 +03:00
<hr/>
2021-02-14 19:23:08 +03:00
<p align="center">
<a href="https://github.com/atuinsh/atuin/actions?query=workflow%3ARust"><img src="https://img.shields.io/github/actions/workflow/status/atuinsh/atuin/rust.yml?style=flat-square" /></a>
2021-02-14 19:23:08 +03:00
<a href="https://crates.io/crates/atuin"><img src="https://img.shields.io/crates/v/atuin.svg?style=flat-square" /></a>
<a href="https://crates.io/crates/atuin"><img src="https://img.shields.io/crates/d/atuin.svg?style=flat-square" /></a>
<a href="https://github.com/atuinsh/atuin/blob/main/LICENSE"><img src="https://img.shields.io/crates/l/atuin.svg?style=flat-square" /></a>
2022-03-18 00:21:27 +03:00
<a href="https://discord.gg/Fq8bJSKPHh"><img src="https://img.shields.io/discord/954121165239115808" /></a>
2023-03-01 01:29:34 +03:00
<a rel="me" href="https://hachyderm.io/@atuin"><img src="https://img.shields.io/mastodon/follow/109944632283122560?domain=https%3A%2F%2Fhachyderm.io&style=social"/></a>
2023-03-01 01:27:06 +03:00
<a href="https://twitter.com/atuinsh"><img src="https://img.shields.io/twitter/follow/atuinsh?style=social" /></a>
2021-02-14 19:23:08 +03:00
</p>
2022-05-10 13:47:08 +03:00
[English] | [简体中文]
Atuin replaces your existing shell history with a SQLite database, and records
additional context for your commands. Additionally, it provides optional and
_fully encrypted_ synchronisation of your history between machines, via an Atuin
server.
<p align="center">
<img src="demo.gif" alt="animated" width="80%" />
</p>
<p align="center">
<em>exit code, duration, time and command shown</em>
</p>
2022-05-10 13:47:08 +03:00
2021-05-07 18:58:57 +03:00
As well as the search UI, it can do things like this:
```
# search for all successful `make` commands, recorded after 3pm yesterday
atuin search --exit 0 --after "yesterday 3pm" make
```
You may use either the server I host, or host your own! Or just don't use sync
at all. As all history sync is encrypted, I couldn't access your data even if
I wanted to. And I **really** don't want to.
## Features
- rebind `ctrl-r` and `up` (configurable) to a full screen history search UI
- store shell history in a sqlite database
2021-05-07 18:58:57 +03:00
- backup and sync **encrypted** shell history
- the same history across terminals, across sessions, and across machines
- log exit code, cwd, hostname, session, command duration, etc
- calculate statistics such as "most used command"
- old history file is not replaced
- quick-jump to previous items with <kbd>Alt-\<num\></kbd>
- switch filter modes via ctrl-r; search history just from the current session, directory, or globally
## Documentation
- [Quickstart](#quickstart)
- [Install](#install)
- [Import](https://atuin.sh/docs/commands/import)
- [Configuration](https://atuin.sh/docs/config)
- [Searching history](https://atuin.sh/docs/commands/search)
- [Cloud history sync](https://atuin.sh/docs/commands/sync)
- [History stats](https://atuin.sh/docs/commands/stats)
- [Self host Atuin server](https://atuin.sh/docs/self-hosting)
2023-08-17 23:42:57 +03:00
- [Key binding](https://atuin.sh/docs/key-binding)
- [Shell completions](https://atuin.sh/docs/commands/shell-completions)
2021-02-13 23:54:35 +03:00
## Supported Shells
- zsh
2021-04-26 13:50:31 +03:00
- bash
- fish
2023-03-26 17:44:31 +03:00
- nushell
2022-03-18 00:21:27 +03:00
## Community
Atuin has a community Discord, available [here](https://discord.gg/Fq8bJSKPHh)
# Quickstart
2021-08-11 19:59:28 +03:00
## With the default sync server
This will sign you up for the default sync server, hosted by me. Everything is end-to-end encrypted, so your secrets are safe!
Read more below for offline-only usage, or for hosting your own server.
```
bash <(curl https://raw.githubusercontent.com/atuinsh/atuin/main/install.sh)
atuin register -u <USERNAME> -e <EMAIL>
atuin import auto
atuin sync
```
2023-02-10 12:08:42 +03:00
Then restart your shell!
2021-08-11 19:59:28 +03:00
2022-06-05 23:49:00 +03:00
### Opt-in to activity graph
Alongside the hosted Atuin server, there is also a service which generates activity graphs for your shell history! These are inspired by the GitHub graph.
For example, here is mine:
![Activity Graph Example](docs/static/img/activity-graph-example.png)
2022-06-05 23:49:00 +03:00
If you wish to get your own, after signing up for the sync server, run this
```
curl https://api.atuin.sh/enable -d $(cat ~/.local/share/atuin/session)
```
The response includes the URL to your graph. Feel free to share and/or embed this URL, the token is _not_ a secret, and simply prevents user enumeration.
2021-08-11 19:59:28 +03:00
## Offline only (no sync)
```
bash <(curl https://raw.githubusercontent.com/atuinsh/atuin/main/install.sh)
2021-08-11 19:59:28 +03:00
atuin import auto
```
By default, Atuin will check for updates. You can [disable update checks by modifying](https://atuin.sh/docs/config/#update_check) `config.toml`.
2023-02-10 12:08:42 +03:00
Then restart your shell!
2021-02-13 23:54:35 +03:00
## Install
2021-04-26 13:50:31 +03:00
### Script (recommended)
2021-04-26 13:50:31 +03:00
The install script will help you through the setup, ensuring your shell is
properly configured. It will also use one of the below methods, preferring the
system package manager where possible (pacman, homebrew, etc etc).
2021-02-15 02:33:14 +03:00
```
2021-04-26 13:50:31 +03:00
# do not run this as root, root will be asked for if required
bash <(curl https://raw.githubusercontent.com/atuinsh/atuin/main/install.sh)
2021-02-15 02:33:14 +03:00
```
And then follow [the shell setup](#shell-plugin)
2021-02-15 02:33:14 +03:00
### With cargo
It's best to use [rustup](https://rustup.rs/) to get setup with a Rust
toolchain, then you can run:
2021-02-13 23:54:35 +03:00
2021-02-14 21:20:18 +03:00
```
2021-02-15 02:33:14 +03:00
cargo install atuin
2021-02-14 21:20:18 +03:00
```
And then follow [the shell setup](#shell-plugin)
2021-02-14 21:20:18 +03:00
2021-05-08 17:06:40 +03:00
### Homebrew
```
brew install atuin
```
And then follow [the shell setup](#shell-plugin)
### MacPorts
Atuin is also available in [MacPorts](https://ports.macports.org/port/atuin/)
```
sudo port install atuin
```
And then follow [the shell setup](#shell-plugin)
2021-05-08 17:06:40 +03:00
### Nix
This repository is a flake, and can be installed using `nix profile`:
```
nix profile install "github:atuinsh/atuin"
```
Atuin is also available in [nixpkgs](https://github.com/NixOS/nixpkgs):
```
nix-env -f '<nixpkgs>' -iA atuin
```
And then follow [the shell setup](#shell-plugin)
### Pacman
2021-04-26 13:50:31 +03:00
Atuin is available in the Arch Linux [[extra] repository](https://archlinux.org/packages/extra/x86_64/atuin/):
2021-04-26 13:50:31 +03:00
```
pacman -S atuin
2021-04-26 13:50:31 +03:00
```
And then follow [the shell setup](#shell-plugin)
2021-04-26 13:50:31 +03:00
### Termux
Atuin is available in the Termux package repository:
```
pkg install atuin
```
And then follow [the shell setup](#shell-plugin)
2021-02-15 02:33:14 +03:00
### From source
2021-02-13 23:54:35 +03:00
```
git clone https://github.com/atuinsh/atuin.git
cd atuin/atuin
2021-02-15 02:33:14 +03:00
cargo install --path .
2021-02-13 23:54:35 +03:00
```
And then follow [the shell setup](#shell-plugin)
2021-02-13 23:54:35 +03:00
2021-04-26 13:50:31 +03:00
## Shell plugin
Once the binary is installed, the shell plugin requires installing. If you use
2023-02-10 12:08:42 +03:00
the install script, this should all be done for you! After installing, remember to restart your shell.
2021-04-26 13:50:31 +03:00
### zsh
```
echo 'eval "$(atuin init zsh)"' >> ~/.zshrc
```
#### Zinit
```sh
zinit load atuinsh/atuin
```
#### Antigen
```sh
antigen bundle atuinsh/atuin@main
```
2021-04-26 13:50:31 +03:00
### bash
2021-02-13 23:54:35 +03:00
#### [ble.sh](https://github.com/akinomyoga/ble.sh)
2021-02-13 23:54:35 +03:00
Atuin works best in bash when using [ble.sh](https://github.com/akinomyoga/ble.sh).
With ble.sh installed, just add atuin to your .bashrc
```bash
echo 'eval "$(atuin init bash)"' >> ~/.bashrc
2021-02-14 00:21:00 +03:00
```
#### [bash-preexec](https://github.com/rcaloras/bash-preexec)
[Bash-preexec](https://github.com/rcaloras/bash-preexec) can also be used, but you may experience some minor problems with the recorded duration and exit status of some commands.
To use bash-preexec, download and initialize it
```bash
2021-04-26 13:50:31 +03:00
curl https://raw.githubusercontent.com/rcaloras/bash-preexec/master/bash-preexec.sh -o ~/.bash-preexec.sh
echo '[[ -f ~/.bash-preexec.sh ]] && source ~/.bash-preexec.sh' >> ~/.bashrc
2021-02-14 00:21:00 +03:00
```
2021-02-13 23:54:35 +03:00
2021-04-26 13:50:31 +03:00
Then setup Atuin
```bash
2021-04-26 13:50:31 +03:00
echo 'eval "$(atuin init bash)"' >> ~/.bashrc
```
2021-03-11 00:24:08 +03:00
2023-05-16 23:58:05 +03:00
**PLEASE NOTE**
bash-preexec currently has an issue where it will stop honoring `ignorespace`. While Atuin will ignore commands prefixed with whitespace, they may still end up in your bash history. Please check your configuration! All other shells do not have this issue.
### fish
Add
```
atuin init fish | source
```
to your `is-interactive` block in your `~/.config/fish/config.fish` file
### Nushell
Run in *Nushell*:
```
mkdir ~/.local/share/atuin/
atuin init nu | save ~/.local/share/atuin/init.nu
```
Add to `config.nu`:
```
source ~/.local/share/atuin/init.nu
```
# Contributors
<a href="https://github.com/atuinsh/atuin/graphs/contributors">
<img src="https://contrib.rocks/image?repo=atuinsh/atuin&max=300" />
</a>
Made with [contrib.rocks](https://contrib.rocks).
[English]: ./README.md
[简体中文]: ./docs/zh-CN/README.md