Skip to content

Latest commit

 

History

History
35 lines (25 loc) · 697 Bytes

README.md

File metadata and controls

35 lines (25 loc) · 697 Bytes

PARA Directory Generator

A simple Zig tool to generate a PARA (Projects, Areas, Resources, Archive) directory structure with README files.

generate_para /path/to/base/directory

If not directory is provided, it will use the current directory.

What it does

Creates the following file structure:

├── 01 Projects/
│   └── README.md
├── 02 Areas/
│   └── README.md
├── 03 Resources/
│   └── README.md
└── 04 Archive/
    └── README.md

Each README.md contains a brief description of the directory's purpose.

Example

generate_para ~/Documents

This will create the PARA structure in ~/Documents.