> cat /wizhelp/filesystem

========================================================================
                    Wizard File System
========================================================================

Navigate and edit files in your wizard directory.

NAVIGATION:
  pwd              - Show current directory
  cd <path>        - Change directory
  cd               - Go to home directory
  ls [path]        - List files and directories

VIEWING FILES:
  cat <file>       - View entire file
  more <file>      - Page through file
  tail <file> [n]  - View last n lines (default: 10)

FILE OPERATIONS:
  ed <file>        - Edit a file
  cp <src> <dst>   - Copy file
  mv <src> <dst>   - Move/rename file
  rm <file>        - Delete file/directory
  mkdir <dir>      - Create directory

ACCESS LEVELS:
  Level 1: /lib/wizrooms/<yourname>, /lib/objects, /lib/plugins
  Level 3: + /lib/areas
  Level 5: Full /lib access

EDITOR COMMANDS:
When in ed:
  a  - Append after current line
  i  - Insert before current line
  c  - Change (replace) current line
  d  - Delete current line
  p  - Print current line
  l  - List with line numbers
  w  - Write (save) file
  q  - Quit editor
  wq - Write and quit
  .  - Exit input mode

TIPS:
- Your home is /lib/wizrooms/<yourname>
- Create subdirectories to organize projects
- Always save work with 'w' before quitting
- Use 'more' for large files

========================================================================    

> _