mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-09-10 17:53:50 +02:00
z: reword descriptions for clarity
This commit is contained in:
parent
91938046f2
commit
66e189d221
1 changed files with 7 additions and 7 deletions
|
@ -1,27 +1,27 @@
|
||||||
# z
|
# z
|
||||||
|
|
||||||
> Tracks your most used directories and enable quick jumping using regexes from the command line.
|
> Tracks the most used directories and enables quickly navigating to them using string or regex patterns.
|
||||||
|
|
||||||
- Go to a directory that contains foo:
|
- Go to a directory that contains "foo" in the name:
|
||||||
|
|
||||||
`z {{foo}}`
|
`z {{foo}}`
|
||||||
|
|
||||||
- Go to a directory that contains foo and then bar:
|
- Go to a directory that contains "foo" and then "bar":
|
||||||
|
|
||||||
`z {{foo}} {{bar}}`
|
`z {{foo}} {{bar}}`
|
||||||
|
|
||||||
- Go to the highest ranked directory matching foo:
|
- Go to the highest-ranked directory matching "foo":
|
||||||
|
|
||||||
`z -r {{foo}}`
|
`z -r {{foo}}`
|
||||||
|
|
||||||
- Go to the most recently accessed directory matching foo:
|
- Go to the most recently accessed directory matching "foo":
|
||||||
|
|
||||||
`z -t {{foo}}`
|
`z -t {{foo}}`
|
||||||
|
|
||||||
- List all directories matching foo (from z database):
|
- List all directories in `z`'s database matching "foo":
|
||||||
|
|
||||||
`z -l {{foo}}`
|
`z -l {{foo}}`
|
||||||
|
|
||||||
- Remove the current directory from the database:
|
- Remove the current directory from `z`'s database:
|
||||||
|
|
||||||
`z -x .`
|
`z -x .`
|
||||||
|
|
Loading…
Add table
Reference in a new issue