[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Groff] Building a troff parser
From: |
Steffen Nurpmeso |
Subject: |
Re: [Groff] Building a troff parser |
Date: |
Tue, 03 Mar 2015 15:39:21 +0100 |
User-agent: |
s-nail v14.7.11-215-gca137f5-dirty |
Mike Bianchi <address@hidden> wrote:
|On Tue, Mar 03, 2015 at 01:00:35AM -0500, Eric Andrew Lewis wrote:
|> In short, I'd like to make a program that does this:
|>
|> $ explain "rm -rf *"
|> rm -rf *
|> └── rm remove files or directories
|> ├── -r remove directories and their contents recursively
|> ├── -f ignore nonexistent files, never prompt
|> └── * Remove (unlink) files matching this text pattern.
|
|Are you aware of rm --help ?
|
|The --help argument is very common in commands.
Long options are not POSIX standardised, short options thus seem
to be more portable.
:-h
--steffen