Install the complete package with local command reference and every published mode.
install ymlymlThe parser is deliberately strict: tabs and block-list rows such as - item are not supported. Validate unfamiliar YAML with -c; complex YAML is better edited with
yml <file> [key|options] · yml dump <file>yml <file>show YAML data
yml <file> <key>show one exact path or value
yml dump <file>show normalized source text
-f <text|mask> [-k|-v]find matching keys, paths or values
-w <key> : <value>write a value directly to the file
-w <key> < <file>write a value read from another file
-d <key>delete a value or path
-cvalidate the file
With the current core, a successfully opened file is immediately available as $. If this module is the highest-priority installed handler for the file extension, typing the filename by itself opens it through this command. These are core conveniences;
-f searches paths and values. Add -k for keys only or -v for values only. Queries containing * or ? are treated as masks.
-w writes immediately to the file. Use : for an inline value or < <file> to read a value from another file. -d deletes one dotted path.
This module intentionally implements the common configuration subset used on shared hosting. Advanced format features should be edited textually with edit or code rather than silently reinterpreted.
Run the prepared examples directly on the page. Their results are prebuilt and shown in the browser; no terminal command is executed on the server.
Install the current compatible version. Choose Base for the complete feature set or Minimum for the reduced package; use upgrade to update a module that is already installed.
Base and Minimum are two packages of the same current module release, not separate command versions.
Install the complete package with local command reference and every published mode.
install ymlInstall the reduced package. Local reference is omitted;
install yml -mInstall exactly this published version.
install yml -v 1.1.5Ask upgrade to check compatibility and replace the installed block only when needed.
upgrade ymlRemove the extension block while leaving the core and unrelated modules intact.
install yml -uExamples are copyable command lines, not actions executed by this website. Review paths, permissions and destructive flags before running them on a real project.
cd \sandbox\config | yml app.ymlapplication.name lil-shop
application.debug true
database.host localhost
database.port 3306
database.options.0 utf8mb4
database.options.1 strictapp.ymlapplication.name lil-shop
application.debug true
database.host localhost
database.port 3306
database.options.0 utf8mb4
database.options.1 strictyml $ database.hostlocalhostyml $ -f "database*" -kdatabase.host localhost
database.port 3306
database.options.0 utf8mb4
database.options.1 strictyml $ -f "strict" -vdatabase.options.1 strictyml $ -w database.password : "Ed1g!fs:13od"database.password Ed1g!fs:13odyml $ -d database.passworddatabase.host localhost
database.port 3306yml $ -cValid YAMLyml dump $application:
name: lil-shop
debug: true
database:
host: localhost
port: 3306yml \sandbox\config\missing.ymlFile not foundsandbox/config/app.ymlThe example uses a file or directory from the protected /sandbox/ documentation workspace.
application:
name: lil-shop
debug: true
database:
host: localhost
port: 3306
options: ["utf8mb4", "strict"]
Simplifies YAML help and groups search, write, delete and validation operations as flags.