Changeset a16d7e5 for commands.c
- Timestamp:
- Jul 9, 2011, 3:59:13 PM (14 years ago)
- Branches:
- master, release-1.10, release-1.8, release-1.9
- Children:
- 7feba19, 2367f1c, c76a12a
- Parents:
- 7756dde
- git-author:
- Jason Gross <jgross@mit.edu> (07/08/11 04:15:08)
- git-committer:
- Jason Gross <jgross@mit.edu> (07/09/11 15:59:13)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
commands.c
r901cee9 ra16d7e5 50 50 "zlog in will send a login notification, zlog out will send a\n" 51 51 "logout notification. By default a login notification is sent\n" 52 "when owl is started and a logout notification is sent when owl\n"52 "when BarnOwl is started and a logout notification is sent when owl\n" 53 53 "is exited. This behavior can be changed with the 'startuplogin'\n" 54 54 "and 'shutdownlogout' variables. If a tty is specified for zlog in\n" 55 "then the owl variable 'tty' will be set to that string, causing\n"55 "then the BarnOwl variable 'tty' will be set to that string, causing\n" 56 56 "it to be used as the zephyr location tty.\n"), 57 57 58 58 OWLCMD_VOID("quit", owl_command_quit, OWL_CTX_ANY, 59 "exit owl",59 "exit BarnOwl", 60 60 "", 61 "Exit owl and run any shutdown activities."),61 "Exit BarnOwl and run any shutdown activities."), 62 62 OWLCMD_ALIAS("exit", "quit"), 63 63 OWLCMD_ALIAS("q", "quit"), … … 180 180 181 181 OWLCMD_ARGS("startup", owl_command_startup, OWL_CTX_ANY, 182 "run a command and set it to be run at every Owl startup",182 "run a command and set it to be run at every BarnOwl startup", 183 183 "startup <commands> ...", 184 184 "Everything on the command line after the startup command\n" 185 "is executed as a normal owl command and is also placed in\n"186 "a file so that the command is executed every time owl\n"185 "is executed as a normal BarnOwl command and is also placed in\n" 186 "a file so that the command is executed every time BarnOwl\n" 187 187 "is started"), 188 188 189 189 OWLCMD_ARGS("unstartup", owl_command_unstartup, OWL_CTX_ANY, 190 "remove a command from the list of those to be run at Owl startup",190 "remove a command from the list of those to be run at BarnOwl startup", 191 191 "unstartup <commands> ...", 192 192 ""), 193 193 194 194 OWLCMD_VOID("version", owl_command_version, OWL_CTX_ANY, 195 "print the version of the running owl", "", ""),195 "print the version of the running BarnOwl", "", ""), 196 196 197 197 OWLCMD_ARGS("subscribe", owl_command_subscribe, OWL_CTX_ANY, … … 204 204 "only be temporary, i.e., it will not be written to\n" 205 205 "the subscription file and will therefore not be\n" 206 "present the next time owl is started.\n"),206 "present the next time BarnOwl is started.\n"), 207 207 OWLCMD_ALIAS("sub", "subscribe"), 208 208 … … 216 216 "only be temporary, i.e., it will not be updated in\n" 217 217 "the subscription file and will therefore not be\n" 218 "in effect the next time owl is started.\n"),218 "in effect the next time BarnOwl is started.\n"), 219 219 OWLCMD_ALIAS("unsub", "unsubscribe"), 220 220 … … 234 234 235 235 OWLCMD_ARGS("source", owl_command_source, OWL_CTX_ANY, 236 "execute owl commands from a file",236 "execute BarnOwl commands from a file", 237 237 "source <filename>", 238 "Execute the owl commands in <filename>.\n"),238 "Execute the BarnOwl commands in <filename>.\n"), 239 239 240 240 OWLCMD_ARGS("aim", owl_command_aim, OWL_CTX_INTERACTIVE, … … 305 305 306 306 OWLCMD_ARGS("help", owl_command_help, OWL_CTX_INTERACTIVE, 307 "display help on using owl",307 "display help on using BarnOwl", 308 308 "help [command]", ""), 309 309 … … 418 418 419 419 OWLCMD_VOID("suspend", owl_command_suspend, OWL_CTX_ANY, 420 "suspend owl", "", ""),420 "suspend BarnOwl", "", ""), 421 421 422 422 OWLCMD_ARGS("echo", owl_command_echo, OWL_CTX_ANY, … … 509 509 510 510 OWLCMD_VOID("about", owl_command_about, OWL_CTX_INTERACTIVE, 511 "print information about owl", "", ""),511 "print information about BarnOwl", "", ""), 512 512 513 513 OWLCMD_VOID("status", owl_command_status, OWL_CTX_ANY, 514 "print status information about the running owl", "", ""),514 "print status information about the running BarnOwl", "", ""), 515 515 516 516 OWLCMD_ARGS("zlocate", owl_command_zlocate, OWL_CTX_INTERACTIVE, … … 590 590 "The other usages listed above are abbreviated forms that simply set\n" 591 591 "the filter of the current view. The -d option allows you to write a\n" 592 "filter expression that will be dynamically created by owl and then\n"592 "filter expression that will be dynamically created by BarnOwl and then\n" 593 593 "applied as the view's filter\n" 594 594 "SEE ALSO: filter, viewclass, viewuser\n"), … … 676 676 "for formatting messages.\n\n" 677 677 "Show variables will list the names of all variables.\n\n" 678 "Show errors will show a list of errors encountered by Owl.\n\n"678 "Show errors will show a list of errors encountered by BarnOwl.\n\n" 679 679 "SEE ALSO: filter, view, alias, bindkey, help\n"), 680 680
Note: See TracChangeset
for help on using the changeset viewer.