Skip to content

Latest commit

 

History

History
70 lines (51 loc) · 1.07 KB

File metadata and controls

70 lines (51 loc) · 1.07 KB

Usage Guide

Learn how to use KillerTools effectively.

Command Structure

killertools [command] [options]

Commands

List Plugins

killertools list-plugins

Launch Interfaces

killertools tui   # Terminal UI
killertools gui   # Graphical UI

Plugin Commands

Each plugin has its own commands. Use --help to see available options:

killertools files --help
killertools crypto --help
killertools devtools --help

Examples

Files Plugin

# Hash a file
killertools files hash /path/to/file

# Find duplicates
killertools files find-duplicates /path/to/directory

Crypto Plugin

# Generate UUID
killertools crypto uuid

# Hash text
killertools crypto hash "your text here"

DevTools Plugin

# Format JSON
killertools devtools format-json file.json

# Test regex
killertools devtools regex-test "\d+" "123abc"

Configuration

See Configuration Guide for details.

Advanced Usage