Kateb Tech Docs
Commands

File and Project Inspection

Useful terminal commands for examining Kateb Tech project structures, source files, imports, and dependencies.

File and Project Inspection

Show source structure

tree src

Show app structure

tree app

Save structure to a file

tree src > src-structure.txt

Read the saved structure

cat src-structure.txt

Search for text

grep -R "oldName" -n src app components

Search for Kateb Tech core imports

grep -R "@katebtech/core" -n src

Show project structure

tree -L 3

On this page