Skip to content

Commit

Permalink
Add link to examples in README.md
Browse files Browse the repository at this point in the history
Add a link to examples section in README.md for users to see more
examples of using Loz to execute Linux commands based on user prompts.

Generated by gpt-3.5-turbo
  • Loading branch information
joone committed Feb 24, 2024
1 parent 3e6dd73 commit b273c2c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Loz is a command-line tool that enables your preferred LLM to execute system com
### v0.3.0 - 2024-02-24
- **Added**
- Run Linux commands based on user prompts. Users can now execute Linux commands using natural language. For example, by running `loz "find the largest file in the current directory"`,
`Loz` will interpret the instruction and execute the corresponding Linux commands like `find . -type f -exec ls -l {} + | sort -k 5 -nr | head -n 1` to find the largest file.
`Loz` will interpret the instruction and execute the corresponding Linux commands like `find . -type f -exec ls -l {} + | sort -k 5 -nr | head -n 1` to find the largest file. See more [examples](#examples).
### v0.2.13 - 2024-02-22
- **Added**
- Enhanced Git Commit Formatting: Commit messages are now structured with a clear separation between the title and body, improving readability and adherence to Git best practices.
Expand Down

0 comments on commit b273c2c

Please sign in to comment.