1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211
| johncusack@dog:/$ /usr/local/bin/bee /usr/local/bin/bee 馃悵 Bee Usage: bee [global-options] <command> [options] [arguments]
Global Options: --root Specify the root directory of the Backdrop installation to use. If not set, will try to find the Backdrop installation automatically based on the current directory.
--site Specify the directory name or URL of the Backdrop site to use (as defined in 'sites.php'). If not set, will try to find the Backdrop site automatically based on the current directory.
--base-url Specify the base URL of the Backdrop site, such as https://example.com. May be useful with commands that output URLs to pages on the site.
--yes, -y Answer 'yes' to questions without prompting.
--debug, -d Enables 'debug' mode, in which 'debug' and 'log' type messages will be displayed (in addition to all other messages).
Commands: CONFIGURATION config-export cex, bcex Export config from the site.
config-get cget Get the value of a specific config option, or view all the config options in a given file.
config-import cim, bcim Import config into the site.
config-set cset Set the value of an option in a config file.
CORE download-core dl-core Download Backdrop core.
install si, site-install Install Backdrop and setup a new site.
DATABASE db-drop sql-drop Drop the current database and recreate an empty database with the same details. This could be used prior to import if the target database has more tables than the source database.
db-export dbex, db-dump, sql-export, sql-dump Export the database as a compressed SQL file. This uses the --no-tablespaces option by default.
db-import dbim, sql-import Import an SQL file into the current database.
INFORMATION help Provide help and examples for 'bee' and its commands.
log ws, dblog, watchdog-show Show database log messages.
status st, info, core-status Provides an overview of the current Backdrop installation/site.
version Display the current version of Bee.
MISCELLANEOUS cache-clear cc Clear a specific cache, or all Backdrop caches.
cron Run cron.
maintenance-mode mm Enable or disable maintenance mode for Backdrop.
PROJECTS disable dis, pm-disable Disable one or more projects (modules, themes, layouts).
download dl, pm-download Download Backdrop contrib projects.
enable en, pm-enable Enable one or more projects (modules, themes, layouts).
projects pml, pmi, project, pm-list, pm-info Display information about available projects (modules, themes, layouts).
uninstall pmu, pm-uninstall Uninstall one or more modules.
ROLES permissions pls, permissions-list List all permissons of the modules.
role-add-perm rap Grant specified permission(s) to a role.
role-create rcrt Add a role.
role-delete rdel Delete a role.
role-remove-perm rrp Remove specified permission(s) from a role.
roles rls, roles-list List all roles with the permissions.
STATE state-get sg, sget Get the value of a Backdrop state.
state-set ss, sset Set the value of an existing Backdrop state.
THEMES theme-admin admin-theme Set the admin theme.
theme-default default-theme Set the default theme.
UPDATE update-db updb, updbst, updatedb, updatedb-status Show, and optionally apply, all pending database updates.
USERS user-add-role urole, urol Add role to user.
user-block ublk Block a user.
user-cancel ucan Cancel/remove a user.
user-create ucrt Create a user account with the specified name.
user-login uli Display a login link for a given user.
user-password upw, upwd Reset the login password for a given user.
user-remove-role urrole, urrol Remove a role from a user.
user-unblock uublk Unblock a user.
users uls, user-list List all user accounts.
ADVANCED db-query dbq Execute a query using db_query().
eval ev, php-eval Evaluate (run/execute) arbitrary PHP code after bootstrapping Backdrop.
php-script scr Execute an arbitrary PHP file after bootstrapping Backdrop.
sql sqlc, sql-cli, db-cli Open an SQL command-line interface using Backdrop's database credentials.
|