EnglishFrenchSpanish

OnWorks favicon

cfget - Online in the Cloud

Run cfget in OnWorks free hosting provider over Ubuntu Online, Fedora Online, Windows online emulator or MAC OS online emulator

This is the command cfget that can be run in the OnWorks free hosting provider using one of our multiple free online workstations such as Ubuntu Online, Fedora Online, Windows online emulator or MAC OS online emulator

PROGRAM:

NAME


cfget - get values from a config file

SYNOPSIS


cfget [options] section/key
cfget [options] --dump=STYLE [section/key [section/key...]]
cfget [options] --template=STYLE [infile [outfile]]

DESCRIPTION


Get values from a config file.

cfget is a simple tool to read values from configuration files. It is useful, for
example, to create configurable shellscripts or makefiles.

It can also be configured to support virtual configuration values that, if not present in
the config file, are automatically computed from the existing values. This makes it
convenient, for example, to get a "duration" value from a configuration file that only
contains a "start date" and an "end date".

OPTIONS


--version
show program's version number and exit

-h, --help
show this help message and exit

-q, --quiet
quiet mode: only output fatal errors

-v, --verbose
verbose mode

--debug
verbose mode

-C file, --cfg=file
config file to read; the option can be given more than once to read more than one
file. If missing, read a colon separated list from the CFGET_CFG env variable.

-P file, --plugin=file
list of plugin files or directories to load. The option can be given more than once
to read more than one file. If missing, read a colon separated list from the
CFGET_PLUGINS env variable.

-d name, --dump=name
dump the contents of the database using the given style. Use '--dump=list' for a
list of available styles. If one or more paths are provided in the command line,
dump only those paths, otherwise dump all.

-t name, --template=name
read a template file, expand template placeholders using the configuration data and
output the result. Use '--template=list' for a list of available styles.

-f name, --format=name
use a custom configuration file format (default: ini). Use '--format=list' for a
list of available formats. The CFGET_FORMAT environment value, if defined, can be
used to provide a different default value.

-r path, --root=path
restrict all work to values under the given path

EXAMPLES


# Get a key from a config file
cfget -C file.ini general/name

# More can be specified, they will be searched in order
cfget -C general.ini -C local.ini general/name

# Use a plugin to add virtual entries
cfget -C file.ini --plugin=virtual.py general/name

# A plugin can also a directory containing .py files
# and plugins can also be specified more than once
cfget -C file.ini --plugin=virtual.py --plugin=virtual/ general/name

# In a shellscript, you may want to use environment variables if you
# invoke cfget many times:
#!/bin/sh
CFGET_CFG=general.ini:local.ini
CFGET_PLUGINS=virtual.py:virtual/
START=`cfget general/start`
END=`cfget general/end`
DURATION=`cfget general/duration`

# Quick way to copy all config values to the environment
eval `cfget --dump=exports -C file.ini`

# Autoconf-style template substitution
cfget --template=autoconf -C file.ini script.in script

# Curly braces substitude literally
cfget -C file.ini "general/start_{general/type}"

# One can use simple expressions
cfget -C file.ini "general/start + general/duration"
cfget -C file.ini "round(general/age / 2)"

Use cfget online using onworks.net services


Free Servers & Workstations

Download Windows & Linux apps

  • 1
    Phaser
    Phaser
    Phaser is a fast, free, and fun open
    source HTML5 game framework that offers
    WebGL and Canvas rendering across
    desktop and mobile web browsers. Games
    can be co...
    Download Phaser
  • 2
    VASSAL Engine
    VASSAL Engine
    VASSAL is a game engine for creating
    electronic versions of traditional board
    and card games. It provides support for
    game piece rendering and interaction,
    and...
    Download VASSAL Engine
  • 3
    OpenPDF - Fork of iText
    OpenPDF - Fork of iText
    OpenPDF is a Java library for creating
    and editing PDF files with a LGPL and
    MPL open source license. OpenPDF is the
    LGPL/MPL open source successor of iText,
    a...
    Download OpenPDF - Fork of iText
  • 4
    SAGA GIS
    SAGA GIS
    SAGA - System for Automated
    Geoscientific Analyses - is a Geographic
    Information System (GIS) software with
    immense capabilities for geodata
    processing and ana...
    Download SAGA GIS
  • 5
    Toolbox for Java/JTOpen
    Toolbox for Java/JTOpen
    The IBM Toolbox for Java / JTOpen is a
    library of Java classes supporting the
    client/server and internet programming
    models to a system running OS/400,
    i5/OS, o...
    Download Toolbox for Java/JTOpen
  • 6
    D3.js
    D3.js
    D3.js (or D3 for Data-Driven Documents)
    is a JavaScript library that allows you
    to produce dynamic, interactive data
    visualizations in web browsers. With D3
    you...
    Download D3.js
  • More »

Linux commands

Ad