btrfs-cli 0.13.0

User-space command-line tool for inspecting and managing Btrfs filesystems
Documentation
---
source: cli/tests/arguments.rs
expression: "parse(&[\"btrfs\", \"subvolume\", \"create\", \"-i\", \"0/100\", \"-i\", \"1/0\",\n\"/mnt/subvol\"])"
---
Arguments {
    global: GlobalOptions {
        verbose: 0,
        quiet: false,
        dry_run: false,
        log: None,
        format: None,
    },
    command: Subvolume(
        SubvolumeCommand {
            subcommand: Create(
                SubvolumeCreateCommand {
                    qgroups: [
                        "0/100",
                        "1/0",
                    ],
                    parents: false,
                    paths: [
                        "/mnt/subvol",
                    ],
                },
            ),
        },
    ),
}