I am currently looking for a way to easily store and run commands, usually syncing files between two deeply nested directories whenever I want.
So far I found these projects:
Other solutions:
- Bash history using ^+r
- Bash aliases
- Bash functions
What do you guys use?
Try
fzf
. The default hooks will launch fuzzy finders forC-r
: history searchAlt-c
: change directoryC-t
: fill in argument for a nested pathAll seem pretty good for your use case.