简体   繁体   中英

Standard GNU-style keyword options

The book "The Art of UNIX Programming" by Eric Raymond has a section entitled "The -a to -z of command line options", in which he enumerates a "semantic standard" of what various single-letter flags are expected to mean.

For example -a usually means all, -d usually means debug and -f usually means file.

Is there anything similar for GNU-style keyword options, that is long multi-letter options preceded by two hythens ( -- )?

In particular, I was looking for the GNU-style equivalents of -f and -o with the meanings input file and output file respectively.

Would the former option be --file ? Would the latter option be --output ?

Mostly most of the GNU programmers uses --output or -o for output file.

In addition for the long parameters generally more detailed and description need parameters uses two hyphens.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM