https://github.com/natethinks/jog
Simple script to print the last 10 commands you ran in the current directory
https://github.com/natethinks/jog
Last synced: 4 months ago
JSON representation
Simple script to print the last 10 commands you ran in the current directory
- Host: GitHub
- URL: https://github.com/natethinks/jog
- Owner: natethinks
- Created: 2020-05-10T05:03:09.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2023-12-20T21:37:21.000Z (over 2 years ago)
- Last Synced: 2025-03-12T23:02:07.674Z (over 1 year ago)
- Size: 7.81 KB
- Stars: 475
- Watchers: 2
- Forks: 9
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# jog
Print the last 10 commands you ran in the current directory

## Usage
1. Add this function to your `.zshrc`
```
function zshaddhistory() {
if [[ "${1}" != ${~HISTORY_IGNORE} ]]; then
echo "${1%%$'\n'}⋮${PWD} " >> ~/.zsh_history_ext
fi
}
```
2. Download or copy the `jog` script from this repo and place it somewhere in your `$PATH`.
3. Run `touch ~/.zsh_history_ext ; chmod 600 ~/.zsh_history_ext` to ensure that only you can read and write your history.
4. Restart your current terminal sessions for changes to take effect. `exec $SHELL`
5. Use `jog` whenever you find yourself lost and confused.
It's not possible to retroactively store the directory in which a command was run, so **this tool will only work from this point forward.**
## Todo List
Contributions and feature requests are welcome
- Add support for other shells: bash, fish.
- Automatically truncate `.zsh_history_ext` when `HISTSIZE` is surpassed