Interactive command-line tool for file navigation and data processing.
- Node.js 24.10.0+
npm run start
| Command | Description |
|---|---|
up |
Move up one directory level |
cd <path> |
Navigate to directory (relative or absolute) |
ls |
List files and folders in current directory |
.exit |
Exit the application |
count --input file.txt
hash --input file.txt
hash --input file.txt --algorithm md5
hash --input file.txt --algorithm sha512
hash --input file.txt --save
Supported algorithms: sha256 (default), md5, sha512
hash-compare --input file.txt --hash file.txt.sha256
hash-compare --input file.txt --hash file.txt.md5 --algorithm md5
csv-to-json --input data.csv --output data.json
json-to-csv --input data.json --output data.csv
- All file paths can be relative (to current working directory) or absolute
- All file operations use Streams API
- Working directory starts at user home directory