https://github.com/hiimsergey/oorl
A tool for opening URLs from text files
https://github.com/hiimsergey/oorl
cli cli-utilities cli-utility rust rust-lang rust-programming rust-programming-language small small-project small-projects url web webbrowser
Last synced: 7 days ago
JSON representation
A tool for opening URLs from text files
- Host: GitHub
- URL: https://github.com/hiimsergey/oorl
- Owner: hiimsergey
- Created: 2024-02-05T15:45:13.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-04-01T18:11:23.000Z (21 days ago)
- Last Synced: 2025-04-16T03:13:50.562Z (7 days ago)
- Topics: cli, cli-utilities, cli-utility, rust, rust-lang, rust-programming, rust-programming-language, small, small-project, small-projects, url, web, webbrowser
- Language: Rust
- Homepage:
- Size: 12.7 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# oorl
A tool for opening URLs from text files. A small "script" I made for myself because I need this very often.## Usage
### from files
```
$ oorl path1 path2 path3 ...
```... where every argument is the path to a text file. Every URL from every file
will be opened in your default browser.Output:
```
path1: https://example1.com
path1: https://example2.com
path2: https://another_example1.com
path2: https://another_example2.com
path3: https://yet_another_example1.com
path3: https://yet_another_example2.com
```### last URL
```
$ oorl -l path
```A bit specific but useful for if you want to visit the repository of the project you're in:
```
$ oorl -l .git/info
```### from argument
```
$ oorl -s "https://example1.com https://example2.com
https://another_example1.com and other things"
```Output:
```
string: https://example1.com
string: https://example2.com
string: https://another_example1.com
```