sdbusplus

(★ 143)

C++ bindings for systemd dbus APIs

File Explorer

  • .clang-format
  • .clang-format-ignore
  • .flake8
  • .gitignore
  • .isort.cfg
  • .markdownlint.yaml
  • .prettierrc.yaml
  • .shellcheck
  • .shellcheckrc
  • LICENSE
  • meson.build
  • meson.options
  • OWNERS
  • pyproject.toml
  • README.md

# Use via CDN

jsDelivr

jsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.

Command Glossary

Commands referenced in this DOCs, explained below.

🔍

meson

View Details ▼

SCons-like build system that uses Python as a front-end language and Ninja as a building backend.

meson init

Generate a project with default values:

meson init {{[-l|--language]}} c {{[-n|--name]}} {{myproject}} --version {{0.1}}

Generate a C project with a given name and version:

meson {{[build|setup build]}}

Configure a directory named `build` with default values for compilation:

🔍

ninja

View Details ▼

A Build system designed to be fast.

ninja

Build in the current directory:

ninja -j {{4}}

Build in the current directory, executing 4 [j]obs at a time in parallel:

ninja -C {{path/to/directory}}

Build a program in a given directory:

🔍

pip install

View Details ▼

Install Python packages.

pip install {{package1 package2 ...}}

Install one or more packages:

pip install {{package1 package2 ...}} {{[-U|--upgrade]}}

Upgrade all specified packages to the latest version, installing any that are not already present:

pip install {{package}}=={{version}}

Install a specific version of a package:

🔍

pip3

View Details ▼

This command is an alias of `pip`.

tldr pip

View documentation for the original command:

🔍

python3

View Details ▼

This command is an alias of `python`.

tldr python

View documentation for the original command:

🔍

apt install

View Details ▼

Install packages for Debian-based distributions.

sudo apt install {{package}}

Install a package, or update it to the latest version:

sudo apt install {{[-V|--verbose-versions]}} {{package}}

Display verbose package version information during installation or update:

🔍

dnf install

View Details ▼

Install packages on Red Hat-based distributions.

sudo dnf {{[in|install]}} {{package1 package2 ...}}

Install packages by name:

sudo dnf {{[in|install]}} {{path/to/file}}

Install a package from a local file:

sudo dnf {{[in|install]}} {{https://example.com/package.rpm}}

Install a package from the internet:

// repository documentation