1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages/common/tsort.md
Sylvestre Ledru 5756535272
tsort: add example with a string (#10157)
* tsort: Add an actual example with a string

The current example doesn't show what path/to/file should be like (or provide a concrete example)

* Apply placeholder

Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>

* Add - e to the echo cmd

Co-authored-by: Lena <126529524+acuteenvy@users.noreply.github.com>

---------

Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
Co-authored-by: Lena <126529524+acuteenvy@users.noreply.github.com>
2023-05-11 08:57:42 +05:30

13 lines
434 B
Markdown

# tsort
> Perform a topological sort.
> A common use is to show the dependency order of nodes in a directed acyclic graph.
> More information: <https://www.gnu.org/software/coreutils/tsort>.
- Perform a topological sort consistent with a partial sort per line of input separated by blanks:
`tsort {{path/to/file}}`
- Perform a topological sort consistent on strings:
`echo -e "{{UI Backend\nBackend Database\nDocs UI}}" | tsort`