From 8f4367c3bc228885e0f485828569860a6a71dcd7 Mon Sep 17 00:00:00 2001 From: Sylvestre Ledru Date: Sat, 6 May 2023 10:32:18 +0200 Subject: [PATCH] to make it clearer --- src/uu/tsort/tsort.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/uu/tsort/tsort.md b/src/uu/tsort/tsort.md index 4a5621a6c..5effbf1e7 100644 --- a/src/uu/tsort/tsort.md +++ b/src/uu/tsort/tsort.md @@ -5,5 +5,6 @@ tsort [OPTIONS] FILE ``` Topological sort the strings in FILE. -Strings are defined as any sequence of tokens separated by whitespace (tab, space, or newline). +Strings are defined as any sequence of tokens separated by whitespace (tab, space, or newline), ordering them based on dependencies in a directed acyclic graph (DAG). +Useful for scheduling and determining execution order. If FILE is not passed in, stdin is used instead.