https://github.com/joaoviictorti/line
line perform analysis of duplicate information
https://github.com/joaoviictorti/line
duplicate-files golang
Last synced: 11 months ago
JSON representation
line perform analysis of duplicate information
- Host: GitHub
- URL: https://github.com/joaoviictorti/line
- Owner: joaoviictorti
- License: mit
- Created: 2023-07-30T22:39:41.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2024-07-04T14:35:06.000Z (about 2 years ago)
- Last Synced: 2025-04-08T12:51:49.179Z (over 1 year ago)
- Language: Go
- Homepage:
- Size: 1.3 MB
- Stars: 3
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# line
line parse duplicate information

line is a tool that aims to parse multiple lines. It is an excellent option to be used in penetration testing for application recognition and also in day-to-day activities. I designed `line` and maintained a consistently passive model to make it useful for pentest and IT professionals.
- [Installation](#installation)
- [features](#features)
- [Usage](#usage)
- [Details](#details)
- [Running line](#running-line)
---
# Features
- Perform duplicate row analysis
- Remove spaces between lines
- Remove empty lines
- Ignores case sensitivity
# Usage
- Sending the output to a file
```sh
cat urls.txt | line -f parse_urls.txt
```
- Ignoring case sensitivity
```sh
cat urls.txt | line -if parse_urls.txt
```
- Removing empty lines
```sh
cat urls.txt | line -ef parse_urls.txt
```
- Using all grouped flags
```sh
cat urls.txt | line -stif parse_urls.txt
```
# Details

# Installation
line requires **golang** installed, to use:
```sh
go install -v github.com/joaoviictorti/line/cmd/line@latest
```
# Running line
