Initial commit of OpenSPARC T2 architecture model.
[OpenSPARC-T2-SAM] / sam-t2 / devtools / v9 / html / python / lib / optparse-what-options-for.html
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<link rel="STYLESHEET" href="lib.css" type='text/css' />
<link rel="SHORTCUT ICON" href="../icons/pyfav.png" type="image/png" />
<link rel='start' href='../index.html' title='Python Documentation Index' />
<link rel="first" href="lib.html" title='Python Library Reference' />
<link rel='contents' href='contents.html' title="Contents" />
<link rel='index' href='genindex.html' title='Index' />
<link rel='last' href='about.html' title='About this document...' />
<link rel='help' href='about.html' title='About this document...' />
<link rel="next" href="optparse-what-positional-arguments-for.html" />
<link rel="prev" href="optparse-terminology.html" />
<link rel="parent" href="optparse-background.html" />
<link rel="next" href="optparse-what-positional-arguments-for.html" />
<meta name='aesop' content='information' />
<title>6.21.1.2 What are options for?</title>
</head>
<body>
<DIV CLASS="navigation">
<div id='top-navigation-panel' xml:id='top-navigation-panel'>
<table align="center" width="100%" cellpadding="0" cellspacing="2">
<tr>
<td class='online-navigation'><a rel="prev" title="6.21.1.1 Terminology"
href="optparse-terminology.html"><img src='../icons/previous.png'
border='0' height='32' alt='Previous Page' width='32' /></A></td>
<td class='online-navigation'><a rel="parent" title="6.21.1 Background"
href="optparse-background.html"><img src='../icons/up.png'
border='0' height='32' alt='Up One Level' width='32' /></A></td>
<td class='online-navigation'><a rel="next" title="6.21.1.3 What are positional"
href="optparse-what-positional-arguments-for.html"><img src='../icons/next.png'
border='0' height='32' alt='Next Page' width='32' /></A></td>
<td align="center" width="100%">Python Library Reference</td>
<td class='online-navigation'><a rel="contents" title="Table of Contents"
href="contents.html"><img src='../icons/contents.png'
border='0' height='32' alt='Contents' width='32' /></A></td>
<td class='online-navigation'><a href="modindex.html" title="Module Index"><img src='../icons/modules.png'
border='0' height='32' alt='Module Index' width='32' /></a></td>
<td class='online-navigation'><a rel="index" title="Index"
href="genindex.html"><img src='../icons/index.png'
border='0' height='32' alt='Index' width='32' /></A></td>
</tr></table>
<div class='online-navigation'>
<b class="navlabel">Previous:</b>
<a class="sectref" rel="prev" href="optparse-terminology.html">6.21.1.1 Terminology</A>
<b class="navlabel">Up:</b>
<a class="sectref" rel="parent" href="optparse-background.html">6.21.1 Background</A>
<b class="navlabel">Next:</b>
<a class="sectref" rel="next" href="optparse-what-positional-arguments-for.html">6.21.1.3 What are positional</A>
</div>
<hr /></div>
</DIV>
<!--End of Navigation Panel-->
<H3><A NAME="SECTION0082112000000000000000"></A><A NAME="optparse-what-options-for"></A>
<BR>
6.21.1.2 What are options for?
</H3>
<P>
Options are used to provide extra information to tune or customize the
execution of a program. In case it wasn't clear, options are usually
<em>optional</em>. A program should be able to run just fine with no options
whatsoever. (Pick a random program from the <span class="Unix">Unix</span> or GNU toolsets. Can
it run without any options at all and still make sense? The main
exceptions are <code>find</code>, <code>tar</code>, and <code>dd</code>--all of which are mutant
oddballs that have been rightly criticized for their non-standard syntax
and confusing interfaces.)
<P>
Lots of people want their programs to have ``required options''. Think
about it. If it's required, then it's <em>not optional</em>! If there is a
piece of information that your program absolutely requires in order to
run successfully, that's what positional arguments are for.
<P>
As an example of good command-line interface design, consider the humble
<code>cp</code> utility, for copying files. It doesn't make much sense to try to
copy files without supplying a destination and at least one source.
Hence, <code>cp</code> fails if you run it with no arguments. However, it has a
flexible, useful syntax that does not require any options at all:
<div class="verbatim"><pre>
cp SOURCE DEST
cp SOURCE ... DEST-DIR
</pre></div>
<P>
You can get pretty far with just that. Most <code>cp</code> implementations
provide a bunch of options to tweak exactly how the files are copied:
you can preserve mode and modification time, avoid following symlinks,
ask before clobbering existing files, etc. But none of this distracts
from the core mission of <code>cp</code>, which is to copy either one file to
another, or several files to another directory.
<P>
<DIV CLASS="navigation">
<div class='online-navigation'>
<p></p><hr />
<table align="center" width="100%" cellpadding="0" cellspacing="2">
<tr>
<td class='online-navigation'><a rel="prev" title="6.21.1.1 Terminology"
href="optparse-terminology.html"><img src='../icons/previous.png'
border='0' height='32' alt='Previous Page' width='32' /></A></td>
<td class='online-navigation'><a rel="parent" title="6.21.1 Background"
href="optparse-background.html"><img src='../icons/up.png'
border='0' height='32' alt='Up One Level' width='32' /></A></td>
<td class='online-navigation'><a rel="next" title="6.21.1.3 What are positional"
href="optparse-what-positional-arguments-for.html"><img src='../icons/next.png'
border='0' height='32' alt='Next Page' width='32' /></A></td>
<td align="center" width="100%">Python Library Reference</td>
<td class='online-navigation'><a rel="contents" title="Table of Contents"
href="contents.html"><img src='../icons/contents.png'
border='0' height='32' alt='Contents' width='32' /></A></td>
<td class='online-navigation'><a href="modindex.html" title="Module Index"><img src='../icons/modules.png'
border='0' height='32' alt='Module Index' width='32' /></a></td>
<td class='online-navigation'><a rel="index" title="Index"
href="genindex.html"><img src='../icons/index.png'
border='0' height='32' alt='Index' width='32' /></A></td>
</tr></table>
<div class='online-navigation'>
<b class="navlabel">Previous:</b>
<a class="sectref" rel="prev" href="optparse-terminology.html">6.21.1.1 Terminology</A>
<b class="navlabel">Up:</b>
<a class="sectref" rel="parent" href="optparse-background.html">6.21.1 Background</A>
<b class="navlabel">Next:</b>
<a class="sectref" rel="next" href="optparse-what-positional-arguments-for.html">6.21.1.3 What are positional</A>
</div>
</div>
<hr />
<span class="release-info">Release 2.4.2, documentation updated on 28 September 2005.</span>
</DIV>
<!--End of Navigation Panel-->
<ADDRESS>
See <i><a href="about.html">About this document...</a></i> for information on suggesting changes.
</ADDRESS>
</BODY>
</HTML>