Skip to content

logesh-kumar/fscat

Folders and files

NameName
Last commit message
Last commit date

Latest commit

5919510 Β· Dec 18, 2024

History

7 Commits
Dec 18, 2024
Dec 18, 2024
Dec 18, 2024
Dec 18, 2024
Dec 18, 2024
Dec 18, 2024

Repository files navigation

fscat 🐱

A lightning-fast file concatenation tool written in Rust that allows you to combine multiple files with powerful filtering capabilities.

Features ✨

  • πŸš€ Fast and memory-efficient file processing
  • πŸ“ Recursive directory scanning
  • πŸ” Filter files by extensions
  • β›” Exclude files using glob patterns
  • 🎯 Optional inclusion of files without extensions
  • 🌈 Colorized output for better readability
  • πŸ“Š Progress bar for large operations
  • ⚑ Asynchronous file reading

Installation πŸ“¦

cargo install fscat

Usage πŸ› οΈ

Basic usage:

fscat /path/to/directory

Options

USAGE:
    fscat [OPTIONS] <PATH>

ARGS:
    <PATH>    Directory to scan for files

OPTIONS:
    -e, --ext <EXTENSIONS>     File extensions to include (comma-separated)
                              Example: -e js,ts,jsx
    
    -x, --exclude <PATTERNS>   Patterns to exclude (comma-separated)
                              Example: -x "node_modules,**/test/**"
    
    -n, --include-no-ext      Include files without extensions
    
    -h, --help                Print help information
    
    -V, --version             Print version information

Examples πŸ“

  1. Concatenate all JavaScript files:
fscat -e js /path/to/project
  1. Concatenate JavaScript and TypeScript files, excluding tests:
fscat -e js,ts -x "**/test/**,**/*.test.*" /path/to/project
  1. Include files without extensions:
fscat -e js,ts -n /path/to/project

Contributing 🀝

Contributions are welcome! Please feel free to submit a Pull Request.

License πŸ“„

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

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages