Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

kupfer(1) [debian man page]

KUPFER(1)																 KUPFER(1)

NAME
kupfer - Convenient command and access tool for applications and documents SYNOPSIS
kupfer [ OPTIONS | FILE ... ] kupfer-exec FILE ... DESCRIPTION
Kupfer is an interface for quick and convenient access to applications and their documents. The most typical use is to find a specific application and launch it. We have tried to make Kupfer easy to extend with plugins so that this quick-access paradigm can be extended to many more objects than just applications. kupfer-exec is a helper script that can execute commands saved to file, but only by connecting to an already running instance of Kupfer. SPAWNING
Running kupfer on the command line (without options) will try to show the program it if already running. Kupfer can be invoked with a list of files kupfer FILE ... This can be used to select files given as command-line arguments in the program. Then you can invoke actions even on objects from a shell-based context. You may also pipe text to kupfer to pass it to a currently running instance of the program. OPTIONS
--no-splash Launch without presenting main interface --list-plugins Display a list of all installed plugins --debug Enable more verbose output that can help understanding the program's operation. --relay Is deprecated and will be started by the Multihead Support plugin when needed --exec-helper=HELPER Run plugin helper program, which should be the name of a module inside kupfer. The following are generic options --help Display usage information --version Display version information CONFIGURATION
Custom plugins are added to kupfer by installing them to the directory ~/.local/share/kupfer/plugins, or any kupfer/plugins directory in any of $XDG_DATA_DIRS. ENVIRONMENT VARIABLES
If KUPFER_NO_CUSTOM_PLUGINS is set, only allow loading built-in plugins (installed in the program's python package). If KUPFER_NO_CACHE is set, do not load from or write to any source cache files. AUTHOR
Ulrik Sverdrup <ulrik.sverdrup@gmail.com> 2011 KUPFER(1)

Check Out this Related Man Page

RABBITMQ-PLUGINS(1)						 RabbitMQ Service					       RABBITMQ-PLUGINS(1)

NAME
rabbitmq-plugins - command line tool for managing RabbitMQ broker plugins SYNOPSIS
rabbitmq-plugins {command} [command options...] DESCRIPTION
rabbitmq-plugins is a command line tool for managing RabbitMQ broker plugins. It allows one to enable, disable and browse plugins. It must be run by a user with write permissions to the RabbitMQ configuration directory. Some plugins depend on others to work correctly. rabbitmq-plugins traverses these dependencies and enables all required plugins. Plugins listed on the rabbitmq-plugins command line are marked as explicitly enabled; dependent plugins are marked as implicitly enabled. Implicitly enabled plugins are automatically disabled again when they are no longer required. COMMANDS
list [-v] [-m] [-E] [-e] [pattern] -v Show all plugin details (verbose). -m Show only plugin names (minimal). -E Show only explicitly enabled plugins. -e Show only explicitly or implicitly enabled plugins. pattern Pattern to filter the plugin names by. Lists available plugins, their versions, dependencies and descriptions. Each plugin is prefixed with a status indicator - [ ] to indicate that the plugin is not enabled, [E] to indicate that it is explicitly enabled, and [e] to indicate that it is implicitly enabled. If the optional pattern is given, only plugins whose name matches pattern are shown. enable {plugin ...} plugin One or more plugins to enable. Enables the specified plugins and all their dependencies. disable {plugin ...} plugin One or more plugins to disable. Disables the specified plugins and all plugins that depend on them. EXAMPLES
rabbitmq-plugins list This command lists all the plugins available, on one line each. rabbitmq-plugins list -v This command lists all the plugins available. rabbitmq-plugins list -v management This command lists all the plugins available, but does not display plugins whose name does not contain "management". rabbitmq-plugins list -e rabbit This command lists all implicitly or explicitly enabled RabbitMQ plugins. rabbitmq-plugins enable rabbitmq_shovel rabbitmq_management This command enables the shovel and management plugins and all their dependencies. rabbitmq-plugins disable amqp_client This command disables amqp_client and all plugins that depend on it. AUTHOR
The RabbitMQ Team <info@rabbitmq.com> RabbitMQ Server 06/22/2012 RABBITMQ-PLUGINS(1)
Man Page