* cygpath.cc (usage): Clarify help output to indicate acceptance
of multiple file names as arguments.
This commit is contained in:
parent
39fd43d7fa
commit
4c6344923e
|
@ -1,3 +1,8 @@
|
||||||
|
2005-02-23 Joshua Daniel Franklin <joshuadfranklin@yahoo.com>
|
||||||
|
|
||||||
|
* cygpath.cc (usage): Clarify help output to indicate acceptance
|
||||||
|
of multiple file names as arguments.
|
||||||
|
|
||||||
2005-01-16 Christopher Faylor <cgf@timesys.com>
|
2005-01-16 Christopher Faylor <cgf@timesys.com>
|
||||||
|
|
||||||
* ps.cc (main): Eliminate use of PID_ZOMBIE.
|
* ps.cc (main): Eliminate use of PID_ZOMBIE.
|
||||||
|
|
|
@ -65,22 +65,23 @@ usage (FILE * stream, int status)
|
||||||
{
|
{
|
||||||
if (!ignore_flag || !status)
|
if (!ignore_flag || !status)
|
||||||
fprintf (stream, "\
|
fprintf (stream, "\
|
||||||
Usage: %s (-d|-m|-u|-w|-t TYPE) [-c HANDLE] [-f FILE] [options] NAME\n\
|
Usage: %s (-d|-m|-u|-w|-t TYPE) [-f FILE] [OPTION]... NAME...\n\
|
||||||
|
%s [-c HANDLE] \n\
|
||||||
%s [-ADHPSW] \n\
|
%s [-ADHPSW] \n\
|
||||||
Convert Unix and Windows format paths, or output system path information\n\
|
Convert Unix and Windows format paths, or output system path information\n\
|
||||||
\n\
|
\n\
|
||||||
Output type options:\n\
|
Output type options:\n\
|
||||||
-d, --dos print DOS (short) form of NAME (C:\\PROGRA~1\\)\n\
|
-d, --dos print DOS (short) form of NAMEs (C:\\PROGRA~1\\)\n\
|
||||||
-m, --mixed like --windows, but with regular slashes (C:/WINNT)\n\
|
-m, --mixed like --windows, but with regular slashes (C:/WINNT)\n\
|
||||||
-M, --mode report on mode of file (binmode or textmode)\n\
|
-M, --mode report on mode of file (binmode or textmode)\n\
|
||||||
-u, --unix (default) print Unix form of NAME (/cygdrive/c/winnt)\n\
|
-u, --unix (default) print Unix form of NAMEs (/cygdrive/c/winnt)\n\
|
||||||
-w, --windows print Windows form of NAME (C:\\WINNT)\n\
|
-w, --windows print Windows form of NAMEs (C:\\WINNT)\n\
|
||||||
-t, --type TYPE print TYPE form: 'dos', 'mixed', 'unix', or 'windows'\n\
|
-t, --type TYPE print TYPE form: 'dos', 'mixed', 'unix', or 'windows'\n\
|
||||||
Path conversion options:\n\
|
Path conversion options:\n\
|
||||||
-a, --absolute output absolute path\n\
|
-a, --absolute output absolute path\n\
|
||||||
-l, --long-name print Windows long form of NAME (with -w, -m only)\n\
|
-l, --long-name print Windows long form of NAMEs (with -w, -m only)\n\
|
||||||
-p, --path NAME is a PATH list (i.e., '/bin:/usr/bin')\n\
|
-p, --path NAME is a PATH list (i.e., '/bin:/usr/bin')\n\
|
||||||
-s, --short-name print DOS (short) form of NAME (with -w, -m only)\n\
|
-s, --short-name print DOS (short) form of NAMEs (with -w, -m only)\n\
|
||||||
System information:\n\
|
System information:\n\
|
||||||
-A, --allusers use `All Users' instead of current user for -D, -P\n\
|
-A, --allusers use `All Users' instead of current user for -D, -P\n\
|
||||||
-D, --desktop output `Desktop' directory and exit\n\
|
-D, --desktop output `Desktop' directory and exit\n\
|
||||||
|
|
|
@ -112,22 +112,23 @@ for example:</para>
|
||||||
<sect2 id="cygpath"><title>cygpath</title>
|
<sect2 id="cygpath"><title>cygpath</title>
|
||||||
|
|
||||||
<screen>
|
<screen>
|
||||||
Usage: cygpath (-d|-m|-u|-w|-t TYPE) [-c HANDLE] [-f FILE] [options] NAME
|
Usage: cygpath (-d|-m|-u|-w|-t TYPE) [-f FILE] [OPTION]... NAME...
|
||||||
|
cygpath [-c HANDLE]
|
||||||
cygpath [-ADHPSW]
|
cygpath [-ADHPSW]
|
||||||
Convert Unix and Windows format paths, or output system path information
|
Convert Unix and Windows format paths, or output system path information
|
||||||
|
|
||||||
Output type options:
|
Output type options:
|
||||||
-d, --dos print DOS (short) form of NAME (C:\PROGRA~1\)
|
-d, --dos print DOS (short) form of NAMEs (C:\PROGRA~1\)
|
||||||
-m, --mixed like --windows, but with regular slashes (C:/WINNT)
|
-m, --mixed like --windows, but with regular slashes (C:/WINNT)
|
||||||
-M, --mode report on mode of file (currently binmode or textmode)
|
-M, --mode report on mode of file (currently binmode or textmode)
|
||||||
-u, --unix (default) print Unix form of NAME (/cygdrive/c/winnt)
|
-u, --unix (default) print Unix form of NAMEs (/cygdrive/c/winnt)
|
||||||
-w, --windows print Windows form of NAME (C:\WINNT)
|
-w, --windows print Windows form of NAMEs (C:\WINNT)
|
||||||
-t, --type TYPE print TYPE form: 'dos', 'mixed', 'unix', or 'windows'
|
-t, --type TYPE print TYPE form: 'dos', 'mixed', 'unix', or 'windows'
|
||||||
Path conversion options:
|
Path conversion options:
|
||||||
-a, --absolute output absolute path
|
-a, --absolute output absolute path
|
||||||
-l, --long-name print Windows long form of NAME (with -w, -m only)
|
-l, --long-name print Windows long form of NAMEs (with -w, -m only)
|
||||||
-p, --path NAME is a PATH list (i.e., '/bin:/usr/bin')
|
-p, --path NAME is a PATH list (i.e., '/bin:/usr/bin')
|
||||||
-s, --short-name print DOS (short) form of NAME (with -w, -m only)
|
-s, --short-name print DOS (short) form of NAMEs (with -w, -m only)
|
||||||
System information:
|
System information:
|
||||||
-A, --allusers use `All Users' instead of current user for -D, -P
|
-A, --allusers use `All Users' instead of current user for -D, -P
|
||||||
-D, --desktop output `Desktop' directory and exit
|
-D, --desktop output `Desktop' directory and exit
|
||||||
|
|
Loading…
Reference in New Issue