-
Notifications
You must be signed in to change notification settings - Fork 0
Setup
Satoshi Takeda edited this page Feb 8, 2026
·
1 revision
This project is provided “as is”.
Use it at your own risk.
The author is not responsible for any damage or issues caused by its use.
Various history files (.*history) contain a significant amount of confidential information, so exercise extreme caution when moving or copying them.
tmpdir=$(mktemp -d)
ls -a | grep history | xargs -I{} cp {} "$tmpdir/"
cp ~/.local/share/fish/fish_history "$tmpdir/"
tar -czf histories.tar.gz -C "$tmpdir" .
rm -rf "$tmpdir"