mirror of
https://github.com/mickael-menu/zk
synced 2024-11-13 01:10:43 +00:00
38 lines
1.1 KiB
Plaintext
38 lines
1.1 KiB
Plaintext
# The notebook directory is derived from the working directory.
|
|
$ zk list -qfpath --working-dir paths
|
|
>paper.md
|
|
>brown/wood.md
|
|
|
|
# working-dir is custom parsed, check that it handles both one and two arg forms
|
|
$ zk list -qfpath --working-dir=paths
|
|
>paper.md
|
|
>brown/wood.md
|
|
|
|
# Short flag.
|
|
$ zk list -qfpath -W paths
|
|
>paper.md
|
|
>brown/wood.md
|
|
|
|
# working-dir is custom parsed, check that it handles both one and two arg forms
|
|
$ zk list -qfpath -W=paths
|
|
>paper.md
|
|
>brown/wood.md
|
|
|
|
# The note paths and links are relative to the provided working directory
|
|
$ zk list -qf"\{{path}} \{{link}}" --working-dir paths/brown
|
|
>../paper.md [Paper](../paper)
|
|
>wood.md [Wood](wood)
|
|
|
|
# Creating a new note in the given working directory.
|
|
$ zk new --print-path --title "Stone" --working-dir paths
|
|
>{{working-dir}}/paths/stone.md
|
|
|
|
# Creating a new note in the given working directory.
|
|
$ zk new --print-path --title "Glass" --working-dir paths/brown
|
|
>{{working-dir}}/paths/brown/glass.md
|
|
|
|
# Creating a new note relative to the given working directory.
|
|
$ zk new --print-path --title "Iron" --working-dir paths/brown ..
|
|
>{{working-dir}}/paths/iron.md
|
|
|