treecat
Version:
View folder structure like tree and display file contents like cat — all in one CLI.
25 lines (21 loc) • 641 B
JavaScript
/**
* @file treecat.mjs - View folder structure like tree and display file contents like cat — all in one CLI.
* @author
* Created by nzingx <https://github.com/nzingx>
* @copyright
* © 2025 nzingx. All rights reserved.
* @license EVL
*
* This file is part of the Treecat project.
* This software is an original work created and maintained by nzingx.
* Unauthorized reproduction or redistribution is prohibited.
*
* @fileoverview
* Entry point for Treecat CLI.
* Delegates execution to the main() function in lib/main.js.
*
* @version 1.0.1
*/
import { main } from '../lib/main.js';
main();