An open API service indexing awesome lists of open source software.

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

Awesome Lists containing this project

README

          

# line
line parse duplicate information




![line](/img/line.png)

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

![line](/img/help_line.png)

# Installation

line requires **golang** installed, to use:

```sh
go install -v github.com/joaoviictorti/line/cmd/line@latest
```

# Running line

![line](/img/exec.png)