Skip to content

A simple tool to consolidate multiple files into a single .txt file. Perfect for feeding your files to AI tools without any fuss.

License

Notifications You must be signed in to change notification settings

hitesh22rana/sourcecollector

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

28 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

sourcecollector

A simple tool to consolidate multiple files into a single .txt file. Perfect for feeding your files to AI tools without any fuss.

Getting Started

Installation

You can install the sourcecollector CLI tool in two ways:

1. Using go install

go install github.com/hitesh22rana/sourcecollector@latest

This will download and install the sourcecollector binary in your $GOPATH/bin directory.

2. Running Locally

To run sourcecollector locally, follow these steps:

  1. Clone this repository to your local machine:

    git clone https://github.com/hitesh22rana/sourcecollector.git
  2. Build and run the application using make:

    make run input=/path/to/input/directory output=/path/to/output/file.txt fast=true

    Replace /path/to/input/directory and /path/to/output/file.txt with the actual paths you want to use for input and output, respectively. Set fast=true or fast=false based on your preference.

    Alternatively, you can build and run the application manually:

    go build -o bin/sourcecollector cmd/cli/main.go
    ./bin/sourcecollector --input /path/to/input/directory --output /path/to/output/file.txt --fast

Usage

After installing or building the sourcecollector CLI tool, you can run it with the following command:

sourcecollector --input /path/to/input/directory --output /path/to/output/file.txt --fast

Replace /path/to/input/directory and /path/to/output/file.txt with the actual paths you want to use for input and output, respectively. Set --fast=true or --fast=false based on your preference.

Flags

  • --input or -i: (Required) Specifies the input directory path.
  • --output or -o: (Optional) Specifies the output file path. Defaults to output.txt.
  • --fast: (Optional) Enables faster result processing but may result in unordered data. Default is false.
  • --help or -h: Displays help for sourcecollector.

Example usage:

sourcecollector --input /path/to/input --output /path/to/output.txt --fast

License

This project is licensed under the MIT License - see the LICENSE file for details.

About

A simple tool to consolidate multiple files into a single .txt file. Perfect for feeding your files to AI tools without any fuss.

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published