├── .github └── workflows │ ├── docs.yml │ └── release-pipeline.yml ├── .gitignore ├── Cargo.toml ├── LICENSE ├── README.md ├── banner.png ├── docs ├── assets │ ├── banner.png │ └── logo.png ├── contributing.md ├── features │ ├── bits.md │ ├── cpu.md │ ├── csv.md │ ├── disk.md │ ├── env.md │ ├── file.md │ ├── http.md │ ├── ip.md │ ├── json.md │ ├── math.md │ ├── mem.md │ ├── network.md │ ├── port.md │ ├── process.md │ ├── text.md │ └── time.md ├── index.md ├── quickstart.md └── support.md ├── install.ps1 ├── install.sh ├── mkdocs.yml ├── src ├── bits_commands.rs ├── bits_utils.rs ├── cpu_commands.rs ├── csv_commands.rs ├── csv_utils.rs ├── disk_commands.rs ├── env_commands.rs ├── file_commands.rs ├── format_utils.rs ├── graph_utils.rs ├── http_commands.rs ├── input_utils.rs ├── ip_commands.rs ├── ip_utils.rs ├── json_commands.rs ├── lib.rs ├── main.rs ├── math_commands.rs ├── math_utils.rs ├── mem_commands.rs ├── network_commands.rs ├── port_commands.rs ├── process_commands.rs ├── text_commands.rs └── time_commands.rs ├── tests ├── csv_sql_search_tests.rs └── math_exp_tests.rs └── vgsales.csv /.github/workflows/docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timmoth/aid-cli/HEAD/.github/workflows/docs.yml -------------------------------------------------------------------------------- /.github/workflows/release-pipeline.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timmoth/aid-cli/HEAD/.github/workflows/release-pipeline.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timmoth/aid-cli/HEAD/.gitignore -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timmoth/aid-cli/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timmoth/aid-cli/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timmoth/aid-cli/HEAD/README.md -------------------------------------------------------------------------------- /banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timmoth/aid-cli/HEAD/banner.png -------------------------------------------------------------------------------- /docs/assets/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timmoth/aid-cli/HEAD/docs/assets/banner.png -------------------------------------------------------------------------------- /docs/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timmoth/aid-cli/HEAD/docs/assets/logo.png -------------------------------------------------------------------------------- /docs/contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timmoth/aid-cli/HEAD/docs/contributing.md -------------------------------------------------------------------------------- /docs/features/bits.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timmoth/aid-cli/HEAD/docs/features/bits.md -------------------------------------------------------------------------------- /docs/features/cpu.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timmoth/aid-cli/HEAD/docs/features/cpu.md -------------------------------------------------------------------------------- /docs/features/csv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timmoth/aid-cli/HEAD/docs/features/csv.md -------------------------------------------------------------------------------- /docs/features/disk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timmoth/aid-cli/HEAD/docs/features/disk.md -------------------------------------------------------------------------------- /docs/features/env.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timmoth/aid-cli/HEAD/docs/features/env.md -------------------------------------------------------------------------------- /docs/features/file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timmoth/aid-cli/HEAD/docs/features/file.md -------------------------------------------------------------------------------- /docs/features/http.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timmoth/aid-cli/HEAD/docs/features/http.md -------------------------------------------------------------------------------- /docs/features/ip.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timmoth/aid-cli/HEAD/docs/features/ip.md -------------------------------------------------------------------------------- /docs/features/json.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timmoth/aid-cli/HEAD/docs/features/json.md -------------------------------------------------------------------------------- /docs/features/math.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timmoth/aid-cli/HEAD/docs/features/math.md -------------------------------------------------------------------------------- /docs/features/mem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timmoth/aid-cli/HEAD/docs/features/mem.md -------------------------------------------------------------------------------- /docs/features/network.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timmoth/aid-cli/HEAD/docs/features/network.md -------------------------------------------------------------------------------- /docs/features/port.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timmoth/aid-cli/HEAD/docs/features/port.md -------------------------------------------------------------------------------- /docs/features/process.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timmoth/aid-cli/HEAD/docs/features/process.md -------------------------------------------------------------------------------- /docs/features/text.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timmoth/aid-cli/HEAD/docs/features/text.md -------------------------------------------------------------------------------- /docs/features/time.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timmoth/aid-cli/HEAD/docs/features/time.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timmoth/aid-cli/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/quickstart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timmoth/aid-cli/HEAD/docs/quickstart.md -------------------------------------------------------------------------------- /docs/support.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timmoth/aid-cli/HEAD/docs/support.md -------------------------------------------------------------------------------- /install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timmoth/aid-cli/HEAD/install.ps1 -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timmoth/aid-cli/HEAD/install.sh -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timmoth/aid-cli/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /src/bits_commands.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timmoth/aid-cli/HEAD/src/bits_commands.rs -------------------------------------------------------------------------------- /src/bits_utils.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timmoth/aid-cli/HEAD/src/bits_utils.rs -------------------------------------------------------------------------------- /src/cpu_commands.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timmoth/aid-cli/HEAD/src/cpu_commands.rs -------------------------------------------------------------------------------- /src/csv_commands.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timmoth/aid-cli/HEAD/src/csv_commands.rs -------------------------------------------------------------------------------- /src/csv_utils.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timmoth/aid-cli/HEAD/src/csv_utils.rs -------------------------------------------------------------------------------- /src/disk_commands.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timmoth/aid-cli/HEAD/src/disk_commands.rs -------------------------------------------------------------------------------- /src/env_commands.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timmoth/aid-cli/HEAD/src/env_commands.rs -------------------------------------------------------------------------------- /src/file_commands.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timmoth/aid-cli/HEAD/src/file_commands.rs -------------------------------------------------------------------------------- /src/format_utils.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timmoth/aid-cli/HEAD/src/format_utils.rs -------------------------------------------------------------------------------- /src/graph_utils.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timmoth/aid-cli/HEAD/src/graph_utils.rs -------------------------------------------------------------------------------- /src/http_commands.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timmoth/aid-cli/HEAD/src/http_commands.rs -------------------------------------------------------------------------------- /src/input_utils.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timmoth/aid-cli/HEAD/src/input_utils.rs -------------------------------------------------------------------------------- /src/ip_commands.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timmoth/aid-cli/HEAD/src/ip_commands.rs -------------------------------------------------------------------------------- /src/ip_utils.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timmoth/aid-cli/HEAD/src/ip_utils.rs -------------------------------------------------------------------------------- /src/json_commands.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timmoth/aid-cli/HEAD/src/json_commands.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timmoth/aid-cli/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timmoth/aid-cli/HEAD/src/main.rs -------------------------------------------------------------------------------- /src/math_commands.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timmoth/aid-cli/HEAD/src/math_commands.rs -------------------------------------------------------------------------------- /src/math_utils.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timmoth/aid-cli/HEAD/src/math_utils.rs -------------------------------------------------------------------------------- /src/mem_commands.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timmoth/aid-cli/HEAD/src/mem_commands.rs -------------------------------------------------------------------------------- /src/network_commands.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timmoth/aid-cli/HEAD/src/network_commands.rs -------------------------------------------------------------------------------- /src/port_commands.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timmoth/aid-cli/HEAD/src/port_commands.rs -------------------------------------------------------------------------------- /src/process_commands.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timmoth/aid-cli/HEAD/src/process_commands.rs -------------------------------------------------------------------------------- /src/text_commands.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timmoth/aid-cli/HEAD/src/text_commands.rs -------------------------------------------------------------------------------- /src/time_commands.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timmoth/aid-cli/HEAD/src/time_commands.rs -------------------------------------------------------------------------------- /tests/csv_sql_search_tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timmoth/aid-cli/HEAD/tests/csv_sql_search_tests.rs -------------------------------------------------------------------------------- /tests/math_exp_tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timmoth/aid-cli/HEAD/tests/math_exp_tests.rs -------------------------------------------------------------------------------- /vgsales.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timmoth/aid-cli/HEAD/vgsales.csv --------------------------------------------------------------------------------