diff options
author | Jeremy Allison <jra@samba.org> | 2002-01-16 20:25:23 +0000 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2002-01-16 20:25:23 +0000 |
commit | 1cd8c9c41f05402f3da5c36d8a8333db0078198e (patch) | |
tree | 0109dd1c6cf401198f7aec60b17a09a6f6fa0dd4 | |
parent | 0173911b46412b520e37b090cf65382f2f5fca38 (diff) | |
download | samba-1cd8c9c41f05402f3da5c36d8a8333db0078198e.tar.gz samba-1cd8c9c41f05402f3da5c36d8a8333db0078198e.tar.bz2 samba-1cd8c9c41f05402f3da5c36d8a8333db0078198e.zip |
Alphabetize.
Jeremy.
(This used to be commit 64301bc5f75283c948630d2b78d28e3869db39a2)
-rw-r--r-- | source3/client/client.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/source3/client/client.c b/source3/client/client.c index 70f39902fc..dbd5ab8d52 100644 --- a/source3/client/client.c +++ b/source3/client/client.c @@ -1964,6 +1964,9 @@ struct char compl_args[2]; /* Completion argument info */ } commands[] = { + {"?",cmd_help,"[command] give help on a command",{COMPL_NONE,COMPL_NONE}}, + {"!",NULL,"run a shell command on the local system",{COMPL_NONE,COMPL_NONE}}, + {"altname",cmd_altname,"<file> show alt name",{COMPL_NONE,COMPL_NONE}}, {"archive",cmd_archive,"<level>\n0=ignore archive bit\n1=only get archive files\n2=only get archive files and reset archive bit\n3=get all files and reset archive bit",{COMPL_NONE,COMPL_NONE}}, {"blocksize",cmd_block,"blocksize <number> (default 20)",{COMPL_NONE,COMPL_NONE}}, {"cancel",cmd_cancel,"<jobid> cancel a print queue entry",{COMPL_NONE,COMPL_NONE}}, @@ -2007,9 +2010,6 @@ struct {"tar",cmd_tar,"tar <c|x>[IXFqbgNan] current directory to/from <file name>",{COMPL_NONE,COMPL_NONE}}, {"tarmode",cmd_tarmode,"<full|inc|reset|noreset> tar's behaviour towards archive bits",{COMPL_NONE,COMPL_NONE}}, {"translate",cmd_translate,"toggle text translation for printing",{COMPL_NONE,COMPL_NONE}}, - {"altname",cmd_altname,"<file> show alt name",{COMPL_NONE,COMPL_NONE}}, - {"?",cmd_help,"[command] give help on a command",{COMPL_NONE,COMPL_NONE}}, - {"!",NULL,"run a shell command on the local system",{COMPL_NONE,COMPL_NONE}}, {"",NULL,NULL,{COMPL_NONE,COMPL_NONE}} }; |