Skip to content

Commit

Permalink
Changed Readme
Browse files Browse the repository at this point in the history
  • Loading branch information
grrlopes committed Aug 5, 2023
1 parent 9de610b commit fd45874
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,15 @@
# 🚀 - Vault cmd-line terminal app

That project can store your bash history in SQLite offers a convenient and effective method for organizing and retrieving command-line history data.
- Through the capabilities of SQLite, you can effortlessly search, filter, and analyze your Bashhistory using SQL queries.
- Furthermore, when you store the bash history in SQLite and present it through a text-based user interface (UI), you can develop a user-friendly terminal application that facilitates interactive exploration and navigation of your command-line history.
- Through the capabilities of SQLite, you can effortlessly search, filter, and analyze your Bash history using SQL queries.
- This integration with a text UI tool empowers you to browse and search your Bash history using interactive commands, enhancing the convenience of accessing and scrutinizing your previous commands.

![](screenshots/storydb1.gif)

You can conveniently explore and interact with your command-line history, making it easier to recall past commands, analyze usage patterns, and improve your workflow in the terminal.

## Set up
- You must set up ```export storydb=$(tty)``` in your global variable profile that are usually located at /etc/profile or $HOME

## Requirements
- Go 1.20+
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ func main() {
}

env := os.Getenv("storydb")
if env != "" {
if env == "" {
log.Fatalf("%s %s", "Error", helper.ErrEnvFailed)
}

Expand Down
Binary file modified screenshots/storydb1.gif
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit fd45874

Please sign in to comment.