Skip to content

Command Reference

Type help for the full command list, or help <command> for one command (including |). Unknown names return a clear error.

  • ls / ls -l — list spaces or pages (personal spaces at /)
  • cd — change directory
  • pwd — print working directory
  • mv — rename, or move one or more pages (mv src1 src2 dest)
  • cp — copy one or more pages; use --dry-run to preview
  • rm / del — delete a page or space
  • touch / mkdir — create an empty page
  • cat — show page body
  • open — open in a new tab
  • head / tail — first or last N lines (page path or pipe)
  • grep — filter lines (-i -v -n -c)
  • echo — print arguments or pass piped input through
$ ls | grep -i page
$ cat ./page1 | head
$ ls | tail 2

head, tail, and grep also take a page path instead of stdin.