Install the complete package with local command reference and every published mode.
install propertiesproperties.properties files as keys and values, understands continued lines, and exposes dotted names as convenient paths for search and focused edits.
database.host is convenient to address as a path, but the file on disk remains a flat key=value lines, so use a text editor when comments or exact layout must be preserved.
properties <file> [key|options] · properties dump <file>properties <file>show
properties <file> <key>show one exact dotted path
properties dump <file>show normalized
-f <text|mask> [-k|-v]find matching keys or values; * and ? enable a mask
-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 by dotted path
-cvalidate the
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 propertiesInstall the reduced package. Local reference is omitted;
install properties -mInstall exactly this published version.
install properties -v 1.1.5Ask upgrade to check compatibility and replace the installed block only when needed.
upgrade propertiesRemove the extension block while leaving the core and unrelated modules intact.
install properties -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 | properties app.propertiesapplication.name lil-shop
application.debug true
database.host localhost
database.port 3306app.propertiesapplication.name lil-shop
application.debug true
database.host localhost
database.port 3306properties $ database.hostlocalhostproperties $ -f "application*" -kapplication.name lil-shop
application.debug trueproperties $ -f "localhost" -vdatabase.host localhostproperties $ -w database.password : "Ed1g!fs:13od"database.password Ed1g!fs:13odproperties $ -d database.passworddatabase.host localhost
database.port 3306properties $ -cValid propertiesproperties dump $application.name=lil-shop
application.debug=true
database.host=localhost
database.port=3306properties \sandbox\config\missing.propertiesFile not foundsandbox/config/app.propertiesThe example uses a file or directory from the protected /sandbox/ documentation workspace.
application.name=lil-shop
application.debug=true
database.host=localhost
database.port=3306