You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
zk/tests/flag-working-dir.tesh

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