diff options
Diffstat (limited to 'toys')
-rw-r--r-- | toys/posix/dirname.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/toys/posix/dirname.c b/toys/posix/dirname.c index 06470ad8..fa84af27 100644 --- a/toys/posix/dirname.c +++ b/toys/posix/dirname.c @@ -10,7 +10,7 @@ config DIRNAME bool "dirname" default y help - usage: dirname PATH + usage: dirname PATH... Show directory portion of path. */ @@ -19,5 +19,7 @@ config DIRNAME void dirname_main(void) { - puts(dirname(*toys.optargs)); + char **arg; + + for (arg = toys.optargs; *arg; ++arg) puts(dirname(*arg)); } |