Jump to content
Main menu
Main menu
move to sidebar
hide
Navigation
Main page
Recent changes
Random page
freem
Search
Search
Appearance
Create account
Log in
Personal tools
Create account
Log in
Pages for logged out editors
learn more
Contributions
Talk
Editing
Openai/693c70a4-9498-8011-87ee-efb5576cc53d
(section)
Add languages
Page
Discussion
English
Read
Edit
Edit source
View history
Tools
Tools
move to sidebar
hide
Actions
Read
Edit
Edit source
View history
General
What links here
Related changes
Special pages
Page information
Appearance
move to sidebar
hide
Warning:
You are not logged in. Your IP address will be publicly visible if you make any edits. If you
log in
or
create an account
, your edits will be attributed to your username, along with other benefits.
Anti-spam check. Do
not
fill this in!
==== For day-to-day work on this project, Iβd strongly recommend one of these variants instead of plain tree: ==== ===== <syntaxhighlight lang="bash">cd ~/projects/wsi-website ===== === Show only top 2 levels, hide noisy dirs === tree -L 2 -I 'node_modules|.git|.venv|site|dist|build' </syntaxhighlight> * -L 2 = limit depth to 2 levels (root + immediate children) * -I 'β¦' = ignore node_modules, .git, etc. If you want only folder structure (no files): <syntaxhighlight lang="bash">tree -d -L 3 -I 'node_modules|.git|.venv|site|dist|build' </syntaxhighlight> ===== <syntaxhighlight lang="bash">tree \ ===== mkdocs.yml mkdocs-02.yml mkdoc-01.yml Dockerfile docker-compose.yml \ docs \ -L 3 </syntaxhighlight> This avoids walking node_modules entirely and focuses on your MkDocs + infra files. ===== If you install <code>eza</code> (the modern replacement for ls): ===== <syntaxhighlight lang="bash">eza -T -L 3 --git-ignore --ignore-glob 'node_modules' docs </syntaxhighlight> * -T = tree mode * --git-ignore = respects .gitignore * --ignore-glob 'node_modules' = hides that directory
Summary:
Please note that all contributions to freem are considered to be released under the Creative Commons Attribution-ShareAlike 4.0 (see
Freem:Copyrights
for details). If you do not want your writing to be edited mercilessly and redistributed at will, then do not submit it here.
You are also promising us that you wrote this yourself, or copied it from a public domain or similar free resource.
Do not submit copyrighted work without permission!
Cancel
Editing help
(opens in new window)