Install the complete package with local command reference and every published mode.
install iniinikey or section.key.
application.name selects name inside [application]. A deeper path such as a.b.c is rejected deliberately; JSON, TOML or YAML is a better fit when the configuration needs more nesting.
ini <file> [key|options] · ini dump <file>ini <file>show
ini <file> <key>show one exact path or value
ini 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.
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 iniInstall the reduced package. Local reference is omitted;
install ini -mInstall exactly this published version.
install ini -v 1.3.5Ask upgrade to check compatibility and replace the installed block only when needed.
upgrade iniRemove the extension block while leaving the core and unrelated modules intact.
install ini -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 | ini app.iniapplication.name lil-sandbox
application.debug true
paths.source ../src
paths.public ../publicapp.iniapplication.name lil-sandbox
application.debug true
paths.source ../src
paths.public ../publicini $ application.namelil-sandboxini $ -f "path*" -kpaths.public ../public
paths.source ../srcini $ -f "../public" -vpaths.public ../publicini $ -w application.password : "Ed1g!fs:13od"application.password Ed1g!fs:13odini $ -d application.passwordapplication.name lil-sandbox
application.debug trueini $ -cValid INIini dump $ > ini-review.txt -r[application]
name = "lil-sandbox"
debug = true
[paths]
source = "../src"
public = "../public"ini \sandbox\config\missing.iniFile not foundsandbox/config/app.iniThe example uses a file or directory from the protected /sandbox/ documentation workspace.
[application]
name = "lil-sandbox"
debug = true
[paths]
source = "../src"
public = "../public"
Simplifies the