question_id
stringlengths 1
5
| nl
stringlengths 4
218
| cmd
stringlengths 1
231
| oracle_man
sequence | cmd_name
stringlengths 1
24
| tldr_cmd_name
stringlengths 1
24
| manual_exist
bool 1
class | matching_info
sequence |
---|---|---|---|---|---|---|---|
10283 | generate python code from a `.proto` file | protoc --python_out={{path/to/output_directory}} {{input_file.proto}} | [
"protoc_2",
"protoc_5",
"protoc_9",
"protoc_12"
] | protoc | protoc | true | {
"token": [
"--python_out",
"|main|"
],
"oracle_man": [
[
"protoc_2",
"protoc_9",
"protoc_12"
],
[
"protoc_5"
]
]
} |
10284 | generate java code from a `.proto` file that imports other `.proto` files | protoc --java_out={{path/to/output_directory}} --proto_path={{path/to/import_search_path}} {{input_file.proto}} | [
"protoc_2",
"protoc_5",
"protoc_6",
"protoc_8",
"protoc_12"
] | protoc | protoc | true | {
"token": [
"--java_out",
"--proto_path",
"|main|"
],
"oracle_man": [
[
"protoc_2",
"protoc_8",
"protoc_12"
],
[
"protoc_2",
"protoc_6"
],
[
"protoc_5"
]
]
} |
10285 | generate code for multiple languages | protoc --csharp_out={{path/to/c#_output_directory}} --js_out={{path/to/js_output_directory}} {{input_file.proto}} | [
"protoc_5"
] | protoc | protoc | true | {
"token": [
"--csharp_out",
"--js_out",
"|main|"
],
"oracle_man": [
[],
[],
[
"protoc_5"
]
]
} |
10307 | display current user's id (uid), group id (gid) and groups to which they belong | id | [
"id_7"
] | id | id | true | {
"token": [
"|main|"
],
"oracle_man": [
[
"id_7",
"id_8"
]
]
} |
10308 | display the current user identity as a number | id -u | [
"id_6",
"id_7",
"id_15"
] | id | id | true | {
"token": [
"-u",
"|main|"
],
"oracle_man": [
[
"id_6",
"id_15"
],
[
"id_7",
"id_8"
]
]
} |
10309 | display the current group identity as a number | id -g | [
"id_5",
"id_7",
"id_12"
] | id | id | true | {
"token": [
"-g",
"|main|"
],
"oracle_man": [
[
"id_5",
"id_12"
],
[
"id_7",
"id_8"
]
]
} |
10310 | display an arbitrary user's id (uid), group id (gid) and groups to which they belong | id {{username}} | [
"id_7"
] | id | id | true | {
"token": [
"|main|"
],
"oracle_man": [
[
"id_7",
"id_8"
]
]
} |
10335 | create eslint config | eslint --init | [
"eslint_2",
"eslint_31"
] | eslint | eslint | true | {
"token": [
"--init",
"|main|"
],
"oracle_man": [
[
"eslint_31"
],
[
"eslint_2",
"eslint_3",
"eslint_4",
"eslint_5",
"eslint_6",
"eslint_7",
"eslint_8",
"eslint_9",
"eslint_10",
"eslint_11",
"eslint_12",
"eslint_13",
"eslint_14",
"eslint_15",
"eslint_16",
"eslint_17",
"eslint_18",
"eslint_19",
"eslint_20",
"eslint_21",
"eslint_22",
"eslint_23",
"eslint_24",
"eslint_25",
"eslint_26",
"eslint_27",
"eslint_28",
"eslint_29",
"eslint_30",
"eslint_31",
"eslint_32",
"eslint_33",
"eslint_34",
"eslint_35"
]
]
} |
10336 | lint on a given set of files | eslint {{filename}}.js {{filename1}}.js | [
"eslint_2"
] | eslint | eslint | true | {
"token": [
"|main|"
],
"oracle_man": [
[
"eslint_2",
"eslint_3",
"eslint_4",
"eslint_5",
"eslint_6",
"eslint_7",
"eslint_8",
"eslint_9",
"eslint_10",
"eslint_11",
"eslint_12",
"eslint_13",
"eslint_14",
"eslint_15",
"eslint_16",
"eslint_17",
"eslint_18",
"eslint_19",
"eslint_20",
"eslint_21",
"eslint_22",
"eslint_23",
"eslint_24",
"eslint_25",
"eslint_26",
"eslint_27",
"eslint_28",
"eslint_29",
"eslint_30",
"eslint_31",
"eslint_32",
"eslint_33",
"eslint_34",
"eslint_35"
]
]
} |
10337 | fix lint issues | eslint --fix | [
"eslint_2",
"eslint_13",
"eslint_14",
"eslint_15"
] | eslint | eslint | true | {
"token": [
"--fix",
"|main|"
],
"oracle_man": [
[
"eslint_13",
"eslint_14",
"eslint_15"
],
[
"eslint_2",
"eslint_3",
"eslint_4",
"eslint_5",
"eslint_6",
"eslint_7",
"eslint_8",
"eslint_9",
"eslint_10",
"eslint_11",
"eslint_12",
"eslint_13",
"eslint_14",
"eslint_15",
"eslint_16",
"eslint_17",
"eslint_18",
"eslint_19",
"eslint_20",
"eslint_21",
"eslint_22",
"eslint_23",
"eslint_24",
"eslint_25",
"eslint_26",
"eslint_27",
"eslint_28",
"eslint_29",
"eslint_30",
"eslint_31",
"eslint_32",
"eslint_33",
"eslint_34",
"eslint_35"
]
]
} |
10338 | lint with config | eslint -c {{path/to/config_file}} {{app/src}} | [
"eslint_2",
"eslint_4",
"eslint_25",
"eslint_26",
"eslint_28",
"eslint_29",
"eslint_30",
"eslint_35"
] | eslint | eslint | true | {
"token": [
"-c",
"|main|"
],
"oracle_man": [
[
"eslint_4",
"eslint_25",
"eslint_26",
"eslint_28",
"eslint_29",
"eslint_30",
"eslint_35"
],
[
"eslint_2",
"eslint_3",
"eslint_4",
"eslint_5",
"eslint_6",
"eslint_7",
"eslint_8",
"eslint_9",
"eslint_10",
"eslint_11",
"eslint_12",
"eslint_13",
"eslint_14",
"eslint_15",
"eslint_16",
"eslint_17",
"eslint_18",
"eslint_19",
"eslint_20",
"eslint_21",
"eslint_22",
"eslint_23",
"eslint_24",
"eslint_25",
"eslint_26",
"eslint_27",
"eslint_28",
"eslint_29",
"eslint_30",
"eslint_31",
"eslint_32",
"eslint_33",
"eslint_34",
"eslint_35"
]
]
} |
10346 | build all targets | dune build | [
"dune_2",
"dune_3",
"dune_5",
"dune_28",
"dune_73"
] | dune | dune | true | {
"token": [
"build",
"|main|"
],
"oracle_man": [
[
"dune_2",
"dune_5",
"dune_28",
"dune_73"
],
[
"dune_3",
"dune_4"
]
]
} |
10347 | clean up the workspace | dune clean | [
"dune_3",
"dune_7",
"dune_81"
] | dune | dune | true | {
"token": [
"clean",
"|main|"
],
"oracle_man": [
[
"dune_7",
"dune_81"
],
[
"dune_3",
"dune_4"
]
]
} |
10348 | run all tests | dune runtest | [
"dune_3",
"dune_21",
"dune_77"
] | dune | dune | true | {
"token": [
"runtest",
"|main|"
],
"oracle_man": [
[
"dune_21",
"dune_77"
],
[
"dune_3",
"dune_4"
]
]
} |
10349 | start the utop repl with compiled modules automatically loaded into it, to remove the need to load them by hand | dune utop | [
"dune_3",
"dune_26"
] | dune | dune | true | {
"token": [
"utop",
"|main|"
],
"oracle_man": [
[
"dune_26"
],
[
"dune_3",
"dune_4"
]
]
} |
10350 | run all tests in all environments of the current platformio project | pio test | [
"pio_1",
"pio_1117",
"pio_1501",
"pio_1522",
"pio_1718",
"pio_1781",
"pio_1782",
"pio_1787",
"pio_1805",
"pio_1934",
"pio_1938",
"pio_1939",
"pio_1940",
"pio_1948",
"pio_1950",
"pio_1961",
"pio_1962",
"pio_1963",
"pio_2024",
"pio_2025",
"pio_2026",
"pio_2027",
"pio_2028",
"pio_2029",
"pio_2034",
"pio_2035",
"pio_2036",
"pio_2037",
"pio_2038",
"pio_2039",
"pio_2041",
"pio_2141",
"pio_2142",
"pio_2143",
"pio_2144",
"pio_2146",
"pio_2226",
"pio_2227",
"pio_2228",
"pio_2234",
"pio_2235",
"pio_2236",
"pio_2280",
"pio_2281",
"pio_2282",
"pio_2283",
"pio_2284",
"pio_2285",
"pio_2292",
"pio_2293",
"pio_2294",
"pio_2295",
"pio_2296",
"pio_2297",
"pio_2299",
"pio_2392",
"pio_2393",
"pio_2394",
"pio_2395",
"pio_2397",
"pio_2465",
"pio_2581",
"pio_2600",
"pio_2920",
"pio_2921",
"pio_2922",
"pio_2923",
"pio_2924",
"pio_2925",
"pio_2926",
"pio_2931",
"pio_2932",
"pio_2937",
"pio_2938",
"pio_2942",
"pio_2944",
"pio_2946",
"pio_2948",
"pio_4106",
"pio_4372",
"pio_26147",
"pio_26955",
"pio_27932",
"pio_27937",
"pio_27942",
"pio_27960",
"pio_27963",
"pio_27967",
"pio_27970",
"pio_27976",
"pio_27982",
"pio_27987",
"pio_28064",
"pio_28066",
"pio_28069",
"pio_28071",
"pio_28074",
"pio_28082",
"pio_28083",
"pio_28804",
"pio_29037",
"pio_29046"
] | pio | pio-test | true | {
"token": [
"test",
"|main|"
],
"oracle_man": [
[
"pio_1117",
"pio_1501",
"pio_1522",
"pio_1718",
"pio_1781",
"pio_1782",
"pio_1787",
"pio_1805",
"pio_1934",
"pio_1938",
"pio_1939",
"pio_1940",
"pio_1948",
"pio_1950",
"pio_1961",
"pio_1962",
"pio_1963",
"pio_2024",
"pio_2025",
"pio_2026",
"pio_2027",
"pio_2028",
"pio_2029",
"pio_2034",
"pio_2035",
"pio_2036",
"pio_2037",
"pio_2038",
"pio_2039",
"pio_2041",
"pio_2141",
"pio_2142",
"pio_2143",
"pio_2144",
"pio_2146",
"pio_2226",
"pio_2227",
"pio_2228",
"pio_2234",
"pio_2235",
"pio_2236",
"pio_2280",
"pio_2281",
"pio_2282",
"pio_2283",
"pio_2284",
"pio_2285",
"pio_2292",
"pio_2293",
"pio_2294",
"pio_2295",
"pio_2296",
"pio_2297",
"pio_2299",
"pio_2392",
"pio_2393",
"pio_2394",
"pio_2395",
"pio_2397",
"pio_2465",
"pio_2581",
"pio_2600",
"pio_2920",
"pio_2921",
"pio_2922",
"pio_2923",
"pio_2924",
"pio_2925",
"pio_2926",
"pio_2931",
"pio_2932",
"pio_2937",
"pio_2938",
"pio_2942",
"pio_2944",
"pio_2946",
"pio_2948",
"pio_4106",
"pio_4372",
"pio_26147",
"pio_26955",
"pio_27932",
"pio_27937",
"pio_27942",
"pio_27960",
"pio_27963",
"pio_27967",
"pio_27970",
"pio_27976",
"pio_27982",
"pio_27987",
"pio_28064",
"pio_28066",
"pio_28069",
"pio_28071",
"pio_28074",
"pio_28082",
"pio_28083",
"pio_28804",
"pio_29037",
"pio_29046"
],
[
"pio_1",
"pio_2",
"pio_3",
"pio_4",
"pio_5",
"pio_6",
"pio_7",
"pio_8"
]
]
} |
10351 | test only specific environments | pio test --environment {{environment1}} --environment {{environment2}} | [
"pio_1",
"pio_442",
"pio_515",
"pio_627",
"pio_673",
"pio_766",
"pio_1117",
"pio_1453",
"pio_1473",
"pio_1499",
"pio_1501",
"pio_1511",
"pio_1512",
"pio_1522",
"pio_1578",
"pio_1718",
"pio_1781",
"pio_1782",
"pio_1787",
"pio_1790",
"pio_1791",
"pio_1805",
"pio_1934",
"pio_1938",
"pio_1939",
"pio_1940",
"pio_1948",
"pio_1950",
"pio_1961",
"pio_1962",
"pio_1963",
"pio_2024",
"pio_2025",
"pio_2026",
"pio_2027",
"pio_2028",
"pio_2029",
"pio_2034",
"pio_2035",
"pio_2036",
"pio_2037",
"pio_2038",
"pio_2039",
"pio_2041",
"pio_2141",
"pio_2142",
"pio_2143",
"pio_2144",
"pio_2146",
"pio_2226",
"pio_2227",
"pio_2228",
"pio_2234",
"pio_2235",
"pio_2236",
"pio_2280",
"pio_2281",
"pio_2282",
"pio_2283",
"pio_2284",
"pio_2285",
"pio_2292",
"pio_2293",
"pio_2294",
"pio_2295",
"pio_2296",
"pio_2297",
"pio_2299",
"pio_2392",
"pio_2393",
"pio_2394",
"pio_2395",
"pio_2397",
"pio_2465",
"pio_2477",
"pio_2581",
"pio_2600",
"pio_2619",
"pio_2920",
"pio_2921",
"pio_2922",
"pio_2923",
"pio_2924",
"pio_2925",
"pio_2926",
"pio_2931",
"pio_2932",
"pio_2937",
"pio_2938",
"pio_2942",
"pio_2944",
"pio_2946",
"pio_2948",
"pio_4106",
"pio_4372",
"pio_26147",
"pio_26955",
"pio_27932",
"pio_27937",
"pio_27942",
"pio_27960",
"pio_27963",
"pio_27967",
"pio_27970",
"pio_27976",
"pio_27982",
"pio_27987",
"pio_28064",
"pio_28066",
"pio_28069",
"pio_28071",
"pio_28074",
"pio_28082",
"pio_28083",
"pio_28804",
"pio_29037",
"pio_29046"
] | pio | pio-test | true | {
"token": [
"test",
"--environment",
"|main|"
],
"oracle_man": [
[
"pio_1117",
"pio_1501",
"pio_1522",
"pio_1718",
"pio_1781",
"pio_1782",
"pio_1787",
"pio_1805",
"pio_1934",
"pio_1938",
"pio_1939",
"pio_1940",
"pio_1948",
"pio_1950",
"pio_1961",
"pio_1962",
"pio_1963",
"pio_2024",
"pio_2025",
"pio_2026",
"pio_2027",
"pio_2028",
"pio_2029",
"pio_2034",
"pio_2035",
"pio_2036",
"pio_2037",
"pio_2038",
"pio_2039",
"pio_2041",
"pio_2141",
"pio_2142",
"pio_2143",
"pio_2144",
"pio_2146",
"pio_2226",
"pio_2227",
"pio_2228",
"pio_2234",
"pio_2235",
"pio_2236",
"pio_2280",
"pio_2281",
"pio_2282",
"pio_2283",
"pio_2284",
"pio_2285",
"pio_2292",
"pio_2293",
"pio_2294",
"pio_2295",
"pio_2296",
"pio_2297",
"pio_2299",
"pio_2392",
"pio_2393",
"pio_2394",
"pio_2395",
"pio_2397",
"pio_2465",
"pio_2581",
"pio_2600",
"pio_2920",
"pio_2921",
"pio_2922",
"pio_2923",
"pio_2924",
"pio_2925",
"pio_2926",
"pio_2931",
"pio_2932",
"pio_2937",
"pio_2938",
"pio_2942",
"pio_2944",
"pio_2946",
"pio_2948",
"pio_4106",
"pio_4372",
"pio_26147",
"pio_26955",
"pio_27932",
"pio_27937",
"pio_27942",
"pio_27960",
"pio_27963",
"pio_27967",
"pio_27970",
"pio_27976",
"pio_27982",
"pio_27987",
"pio_28064",
"pio_28066",
"pio_28069",
"pio_28071",
"pio_28074",
"pio_28082",
"pio_28083",
"pio_28804",
"pio_29037",
"pio_29046"
],
[
"pio_442",
"pio_515",
"pio_627",
"pio_673",
"pio_766",
"pio_1453",
"pio_1473",
"pio_1499",
"pio_1511",
"pio_1512",
"pio_1578",
"pio_1790",
"pio_1791",
"pio_2477",
"pio_2619"
],
[
"pio_1",
"pio_2",
"pio_3",
"pio_4",
"pio_5",
"pio_6",
"pio_7",
"pio_8"
]
]
} |
10352 | run only tests whose name matches a specific glob pattern | pio test --filter "{{pattern}}" | [
"pio_1",
"pio_611",
"pio_631",
"pio_644",
"pio_1117",
"pio_1432",
"pio_1459",
"pio_1501",
"pio_1522",
"pio_1718",
"pio_1781",
"pio_1782",
"pio_1787",
"pio_1792",
"pio_1795",
"pio_1805",
"pio_1934",
"pio_1938",
"pio_1939",
"pio_1940",
"pio_1948",
"pio_1950",
"pio_1961",
"pio_1962",
"pio_1963",
"pio_2024",
"pio_2025",
"pio_2026",
"pio_2027",
"pio_2028",
"pio_2029",
"pio_2034",
"pio_2035",
"pio_2036",
"pio_2037",
"pio_2038",
"pio_2039",
"pio_2041",
"pio_2141",
"pio_2142",
"pio_2143",
"pio_2144",
"pio_2146",
"pio_2226",
"pio_2227",
"pio_2228",
"pio_2234",
"pio_2235",
"pio_2236",
"pio_2280",
"pio_2281",
"pio_2282",
"pio_2283",
"pio_2284",
"pio_2285",
"pio_2292",
"pio_2293",
"pio_2294",
"pio_2295",
"pio_2296",
"pio_2297",
"pio_2299",
"pio_2392",
"pio_2393",
"pio_2394",
"pio_2395",
"pio_2397",
"pio_2465",
"pio_2581",
"pio_2600",
"pio_2920",
"pio_2921",
"pio_2922",
"pio_2923",
"pio_2924",
"pio_2925",
"pio_2926",
"pio_2928",
"pio_2931",
"pio_2932",
"pio_2937",
"pio_2938",
"pio_2942",
"pio_2944",
"pio_2946",
"pio_2948",
"pio_4106",
"pio_4372",
"pio_26147",
"pio_26955",
"pio_27932",
"pio_27937",
"pio_27942",
"pio_27960",
"pio_27963",
"pio_27967",
"pio_27970",
"pio_27976",
"pio_27982",
"pio_27987",
"pio_28064",
"pio_28066",
"pio_28069",
"pio_28071",
"pio_28074",
"pio_28082",
"pio_28083",
"pio_28803",
"pio_28804",
"pio_29037",
"pio_29046"
] | pio | pio-test | true | {
"token": [
"test",
"--filter",
"|main|"
],
"oracle_man": [
[
"pio_1117",
"pio_1501",
"pio_1522",
"pio_1718",
"pio_1781",
"pio_1782",
"pio_1787",
"pio_1805",
"pio_1934",
"pio_1938",
"pio_1939",
"pio_1940",
"pio_1948",
"pio_1950",
"pio_1961",
"pio_1962",
"pio_1963",
"pio_2024",
"pio_2025",
"pio_2026",
"pio_2027",
"pio_2028",
"pio_2029",
"pio_2034",
"pio_2035",
"pio_2036",
"pio_2037",
"pio_2038",
"pio_2039",
"pio_2041",
"pio_2141",
"pio_2142",
"pio_2143",
"pio_2144",
"pio_2146",
"pio_2226",
"pio_2227",
"pio_2228",
"pio_2234",
"pio_2235",
"pio_2236",
"pio_2280",
"pio_2281",
"pio_2282",
"pio_2283",
"pio_2284",
"pio_2285",
"pio_2292",
"pio_2293",
"pio_2294",
"pio_2295",
"pio_2296",
"pio_2297",
"pio_2299",
"pio_2392",
"pio_2393",
"pio_2394",
"pio_2395",
"pio_2397",
"pio_2465",
"pio_2581",
"pio_2600",
"pio_2920",
"pio_2921",
"pio_2922",
"pio_2923",
"pio_2924",
"pio_2925",
"pio_2926",
"pio_2931",
"pio_2932",
"pio_2937",
"pio_2938",
"pio_2942",
"pio_2944",
"pio_2946",
"pio_2948",
"pio_4106",
"pio_4372",
"pio_26147",
"pio_26955",
"pio_27932",
"pio_27937",
"pio_27942",
"pio_27960",
"pio_27963",
"pio_27967",
"pio_27970",
"pio_27976",
"pio_27982",
"pio_27987",
"pio_28064",
"pio_28066",
"pio_28069",
"pio_28071",
"pio_28074",
"pio_28082",
"pio_28083",
"pio_28804",
"pio_29037",
"pio_29046"
],
[
"pio_611",
"pio_631",
"pio_644",
"pio_1432",
"pio_1459",
"pio_1792",
"pio_1795",
"pio_2928",
"pio_28803"
],
[
"pio_1",
"pio_2",
"pio_3",
"pio_4",
"pio_5",
"pio_6",
"pio_7",
"pio_8"
]
]
} |
10353 | ignore tests whose name matches a specific glob pattern | pio test --ignore "{{pattern}}" | [
"pio_1",
"pio_248",
"pio_1117",
"pio_1501",
"pio_1513",
"pio_1516",
"pio_1522",
"pio_1718",
"pio_1781",
"pio_1782",
"pio_1787",
"pio_1796",
"pio_1799",
"pio_1805",
"pio_1934",
"pio_1938",
"pio_1939",
"pio_1940",
"pio_1948",
"pio_1950",
"pio_1961",
"pio_1962",
"pio_1963",
"pio_2024",
"pio_2025",
"pio_2026",
"pio_2027",
"pio_2028",
"pio_2029",
"pio_2034",
"pio_2035",
"pio_2036",
"pio_2037",
"pio_2038",
"pio_2039",
"pio_2041",
"pio_2141",
"pio_2142",
"pio_2143",
"pio_2144",
"pio_2146",
"pio_2226",
"pio_2227",
"pio_2228",
"pio_2234",
"pio_2235",
"pio_2236",
"pio_2280",
"pio_2281",
"pio_2282",
"pio_2283",
"pio_2284",
"pio_2285",
"pio_2292",
"pio_2293",
"pio_2294",
"pio_2295",
"pio_2296",
"pio_2297",
"pio_2299",
"pio_2392",
"pio_2393",
"pio_2394",
"pio_2395",
"pio_2397",
"pio_2465",
"pio_2581",
"pio_2600",
"pio_2920",
"pio_2921",
"pio_2922",
"pio_2923",
"pio_2924",
"pio_2925",
"pio_2926",
"pio_2931",
"pio_2932",
"pio_2934",
"pio_2937",
"pio_2938",
"pio_2942",
"pio_2944",
"pio_2946",
"pio_2948",
"pio_4106",
"pio_4372",
"pio_26147",
"pio_26955",
"pio_27932",
"pio_27937",
"pio_27942",
"pio_27960",
"pio_27963",
"pio_27967",
"pio_27970",
"pio_27976",
"pio_27982",
"pio_27987",
"pio_28064",
"pio_28066",
"pio_28069",
"pio_28071",
"pio_28074",
"pio_28082",
"pio_28083",
"pio_28804",
"pio_29037",
"pio_29046"
] | pio | pio-test | true | {
"token": [
"test",
"--ignore",
"|main|"
],
"oracle_man": [
[
"pio_1117",
"pio_1501",
"pio_1522",
"pio_1718",
"pio_1781",
"pio_1782",
"pio_1787",
"pio_1805",
"pio_1934",
"pio_1938",
"pio_1939",
"pio_1940",
"pio_1948",
"pio_1950",
"pio_1961",
"pio_1962",
"pio_1963",
"pio_2024",
"pio_2025",
"pio_2026",
"pio_2027",
"pio_2028",
"pio_2029",
"pio_2034",
"pio_2035",
"pio_2036",
"pio_2037",
"pio_2038",
"pio_2039",
"pio_2041",
"pio_2141",
"pio_2142",
"pio_2143",
"pio_2144",
"pio_2146",
"pio_2226",
"pio_2227",
"pio_2228",
"pio_2234",
"pio_2235",
"pio_2236",
"pio_2280",
"pio_2281",
"pio_2282",
"pio_2283",
"pio_2284",
"pio_2285",
"pio_2292",
"pio_2293",
"pio_2294",
"pio_2295",
"pio_2296",
"pio_2297",
"pio_2299",
"pio_2392",
"pio_2393",
"pio_2394",
"pio_2395",
"pio_2397",
"pio_2465",
"pio_2581",
"pio_2600",
"pio_2920",
"pio_2921",
"pio_2922",
"pio_2923",
"pio_2924",
"pio_2925",
"pio_2926",
"pio_2931",
"pio_2932",
"pio_2937",
"pio_2938",
"pio_2942",
"pio_2944",
"pio_2946",
"pio_2948",
"pio_4106",
"pio_4372",
"pio_26147",
"pio_26955",
"pio_27932",
"pio_27937",
"pio_27942",
"pio_27960",
"pio_27963",
"pio_27967",
"pio_27970",
"pio_27976",
"pio_27982",
"pio_27987",
"pio_28064",
"pio_28066",
"pio_28069",
"pio_28071",
"pio_28074",
"pio_28082",
"pio_28083",
"pio_28804",
"pio_29037",
"pio_29046"
],
[
"pio_248",
"pio_1513",
"pio_1516",
"pio_1796",
"pio_1799",
"pio_2934"
],
[
"pio_1",
"pio_2",
"pio_3",
"pio_4",
"pio_5",
"pio_6",
"pio_7",
"pio_8"
]
]
} |
10354 | specify a port for firmware uploading | pio test --upload-port {{upload_port}} | [
"pio_1",
"pio_1117",
"pio_1486",
"pio_1501",
"pio_1517",
"pio_1522",
"pio_1602",
"pio_1718",
"pio_1781",
"pio_1782",
"pio_1787",
"pio_1800",
"pio_1805",
"pio_1934",
"pio_1938",
"pio_1939",
"pio_1940",
"pio_1948",
"pio_1950",
"pio_1961",
"pio_1962",
"pio_1963",
"pio_2024",
"pio_2025",
"pio_2026",
"pio_2027",
"pio_2028",
"pio_2029",
"pio_2034",
"pio_2035",
"pio_2036",
"pio_2037",
"pio_2038",
"pio_2039",
"pio_2041",
"pio_2141",
"pio_2142",
"pio_2143",
"pio_2144",
"pio_2146",
"pio_2226",
"pio_2227",
"pio_2228",
"pio_2234",
"pio_2235",
"pio_2236",
"pio_2280",
"pio_2281",
"pio_2282",
"pio_2283",
"pio_2284",
"pio_2285",
"pio_2292",
"pio_2293",
"pio_2294",
"pio_2295",
"pio_2296",
"pio_2297",
"pio_2299",
"pio_2392",
"pio_2393",
"pio_2394",
"pio_2395",
"pio_2397",
"pio_2465",
"pio_2581",
"pio_2600",
"pio_2920",
"pio_2921",
"pio_2922",
"pio_2923",
"pio_2924",
"pio_2925",
"pio_2926",
"pio_2931",
"pio_2932",
"pio_2937",
"pio_2938",
"pio_2942",
"pio_2944",
"pio_2946",
"pio_2948",
"pio_4065",
"pio_4075",
"pio_4076",
"pio_4081",
"pio_4082",
"pio_4106",
"pio_4336",
"pio_4341",
"pio_4342",
"pio_4347",
"pio_4348",
"pio_4372",
"pio_26147",
"pio_26163",
"pio_26955",
"pio_27932",
"pio_27937",
"pio_27942",
"pio_27960",
"pio_27963",
"pio_27967",
"pio_27970",
"pio_27976",
"pio_27982",
"pio_27987",
"pio_28064",
"pio_28066",
"pio_28069",
"pio_28071",
"pio_28074",
"pio_28082",
"pio_28083",
"pio_28589",
"pio_28804",
"pio_29037",
"pio_29046",
"pio_29306"
] | pio | pio-test | true | {
"token": [
"test",
"--upload-port",
"|main|"
],
"oracle_man": [
[
"pio_1117",
"pio_1501",
"pio_1522",
"pio_1718",
"pio_1781",
"pio_1782",
"pio_1787",
"pio_1805",
"pio_1934",
"pio_1938",
"pio_1939",
"pio_1940",
"pio_1948",
"pio_1950",
"pio_1961",
"pio_1962",
"pio_1963",
"pio_2024",
"pio_2025",
"pio_2026",
"pio_2027",
"pio_2028",
"pio_2029",
"pio_2034",
"pio_2035",
"pio_2036",
"pio_2037",
"pio_2038",
"pio_2039",
"pio_2041",
"pio_2141",
"pio_2142",
"pio_2143",
"pio_2144",
"pio_2146",
"pio_2226",
"pio_2227",
"pio_2228",
"pio_2234",
"pio_2235",
"pio_2236",
"pio_2280",
"pio_2281",
"pio_2282",
"pio_2283",
"pio_2284",
"pio_2285",
"pio_2292",
"pio_2293",
"pio_2294",
"pio_2295",
"pio_2296",
"pio_2297",
"pio_2299",
"pio_2392",
"pio_2393",
"pio_2394",
"pio_2395",
"pio_2397",
"pio_2465",
"pio_2581",
"pio_2600",
"pio_2920",
"pio_2921",
"pio_2922",
"pio_2923",
"pio_2924",
"pio_2925",
"pio_2926",
"pio_2931",
"pio_2932",
"pio_2937",
"pio_2938",
"pio_2942",
"pio_2944",
"pio_2946",
"pio_2948",
"pio_4106",
"pio_4372",
"pio_26147",
"pio_26955",
"pio_27932",
"pio_27937",
"pio_27942",
"pio_27960",
"pio_27963",
"pio_27967",
"pio_27970",
"pio_27976",
"pio_27982",
"pio_27987",
"pio_28064",
"pio_28066",
"pio_28069",
"pio_28071",
"pio_28074",
"pio_28082",
"pio_28083",
"pio_28804",
"pio_29037",
"pio_29046"
],
[
"pio_1486",
"pio_1517",
"pio_1602",
"pio_1800",
"pio_4065",
"pio_4075",
"pio_4076",
"pio_4081",
"pio_4082",
"pio_4336",
"pio_4341",
"pio_4342",
"pio_4347",
"pio_4348",
"pio_26163",
"pio_28589",
"pio_29306"
],
[
"pio_1",
"pio_2",
"pio_3",
"pio_4",
"pio_5",
"pio_6",
"pio_7",
"pio_8"
]
]
} |
10355 | specify a custom configuration file for running the tests | pio test --project-conf {{path/to/platformio.ini}} | [
"pio_1",
"pio_457",
"pio_476",
"pio_497",
"pio_520",
"pio_1117",
"pio_1501",
"pio_1522",
"pio_1607",
"pio_1718",
"pio_1781",
"pio_1782",
"pio_1787",
"pio_1805",
"pio_1808",
"pio_1934",
"pio_1938",
"pio_1939",
"pio_1940",
"pio_1948",
"pio_1950",
"pio_1961",
"pio_1962",
"pio_1963",
"pio_2024",
"pio_2025",
"pio_2026",
"pio_2027",
"pio_2028",
"pio_2029",
"pio_2034",
"pio_2035",
"pio_2036",
"pio_2037",
"pio_2038",
"pio_2039",
"pio_2041",
"pio_2141",
"pio_2142",
"pio_2143",
"pio_2144",
"pio_2146",
"pio_2226",
"pio_2227",
"pio_2228",
"pio_2234",
"pio_2235",
"pio_2236",
"pio_2280",
"pio_2281",
"pio_2282",
"pio_2283",
"pio_2284",
"pio_2285",
"pio_2292",
"pio_2293",
"pio_2294",
"pio_2295",
"pio_2296",
"pio_2297",
"pio_2299",
"pio_2392",
"pio_2393",
"pio_2394",
"pio_2395",
"pio_2397",
"pio_2465",
"pio_2581",
"pio_2600",
"pio_2920",
"pio_2921",
"pio_2922",
"pio_2923",
"pio_2924",
"pio_2925",
"pio_2926",
"pio_2931",
"pio_2932",
"pio_2937",
"pio_2938",
"pio_2942",
"pio_2944",
"pio_2946",
"pio_2948",
"pio_4106",
"pio_4372",
"pio_26147",
"pio_26955",
"pio_27932",
"pio_27937",
"pio_27942",
"pio_27960",
"pio_27963",
"pio_27967",
"pio_27970",
"pio_27975",
"pio_27976",
"pio_27982",
"pio_27987",
"pio_28064",
"pio_28066",
"pio_28069",
"pio_28071",
"pio_28074",
"pio_28082",
"pio_28083",
"pio_28155",
"pio_28156",
"pio_28574",
"pio_28631",
"pio_28804",
"pio_28935",
"pio_29037",
"pio_29046"
] | pio | pio-test | true | {
"token": [
"test",
"--project-conf",
"|main|"
],
"oracle_man": [
[
"pio_1117",
"pio_1501",
"pio_1522",
"pio_1718",
"pio_1781",
"pio_1782",
"pio_1787",
"pio_1805",
"pio_1934",
"pio_1938",
"pio_1939",
"pio_1940",
"pio_1948",
"pio_1950",
"pio_1961",
"pio_1962",
"pio_1963",
"pio_2024",
"pio_2025",
"pio_2026",
"pio_2027",
"pio_2028",
"pio_2029",
"pio_2034",
"pio_2035",
"pio_2036",
"pio_2037",
"pio_2038",
"pio_2039",
"pio_2041",
"pio_2141",
"pio_2142",
"pio_2143",
"pio_2144",
"pio_2146",
"pio_2226",
"pio_2227",
"pio_2228",
"pio_2234",
"pio_2235",
"pio_2236",
"pio_2280",
"pio_2281",
"pio_2282",
"pio_2283",
"pio_2284",
"pio_2285",
"pio_2292",
"pio_2293",
"pio_2294",
"pio_2295",
"pio_2296",
"pio_2297",
"pio_2299",
"pio_2392",
"pio_2393",
"pio_2394",
"pio_2395",
"pio_2397",
"pio_2465",
"pio_2581",
"pio_2600",
"pio_2920",
"pio_2921",
"pio_2922",
"pio_2923",
"pio_2924",
"pio_2925",
"pio_2926",
"pio_2931",
"pio_2932",
"pio_2937",
"pio_2938",
"pio_2942",
"pio_2944",
"pio_2946",
"pio_2948",
"pio_4106",
"pio_4372",
"pio_26147",
"pio_26955",
"pio_27932",
"pio_27937",
"pio_27942",
"pio_27960",
"pio_27963",
"pio_27967",
"pio_27970",
"pio_27976",
"pio_27982",
"pio_27987",
"pio_28064",
"pio_28066",
"pio_28069",
"pio_28071",
"pio_28074",
"pio_28082",
"pio_28083",
"pio_28804",
"pio_29037",
"pio_29046"
],
[
"pio_457",
"pio_476",
"pio_497",
"pio_520",
"pio_1607",
"pio_1808",
"pio_27975",
"pio_27976",
"pio_28155",
"pio_28156",
"pio_28574",
"pio_28631",
"pio_28935"
],
[
"pio_1",
"pio_2",
"pio_3",
"pio_4",
"pio_5",
"pio_6",
"pio_7",
"pio_8"
]
]
} |
10356 | search for a pattern within a file | grep "{{search_pattern}}" {{path/to/file}} | [
"grep_3"
] | grep | grep | true | {
"token": [
"|main|"
],
"oracle_man": [
[
"grep_3",
"grep_4",
"grep_5"
]
]
} |
10357 | search for an exact string (disables regular expressions) | grep --fixed-strings "{{exact_string}}" {{path/to/file}} | [
"grep_3",
"grep_9"
] | grep | grep | true | {
"token": [
"--fixed-strings",
"|main|"
],
"oracle_man": [
[
"grep_9"
],
[
"grep_3",
"grep_4",
"grep_5"
]
]
} |
10358 | search for a pattern in all files recursively in a directory, showing line numbers of matches, ignoring binary files | grep --recursive --line-number --binary-files={{without-match}} "{{search_pattern}}" {{path/to/directory}} | [
"grep_3",
"grep_32",
"grep_40",
"grep_41",
"grep_52",
"grep_54",
"grep_57"
] | grep | grep | true | {
"token": [
"--recursive",
"--line-number",
"--binary-files",
"|main|"
],
"oracle_man": [
[
"grep_54"
],
[
"grep_32"
],
[
"grep_40",
"grep_41",
"grep_52",
"grep_57"
],
[
"grep_3",
"grep_4",
"grep_5"
]
]
} |
10359 | use extended regular expressions (supports `?`, `+`, `{}`, `()` and `|`), in caseinsensitive mode | grep --extended-regexp --ignore-case "{{search_pattern}}" {{path/to/file}} | [
"grep_3",
"grep_8",
"grep_14"
] | grep | grep | true | {
"token": [
"--extended-regexp",
"--ignore-case",
"|main|"
],
"oracle_man": [
[
"grep_8"
],
[
"grep_14"
],
[
"grep_3",
"grep_4",
"grep_5"
]
]
} |
10360 | print 3 lines of context around, before, or after each match | grep --{{context|before-context|after-context}}={{3}} "{{search_pattern}}" {{path/to/file}} | [
"grep_3"
] | grep | grep | true | {
"token": [
"|main|"
],
"oracle_man": [
[
"grep_3",
"grep_4",
"grep_5"
]
]
} |
10361 | print file name and line number for each match | grep --with-filename --line-number "{{search_pattern}}" {{path/to/file}} | [
"grep_3",
"grep_29",
"grep_32"
] | grep | grep | true | {
"token": [
"--with-filename",
"--line-number",
"|main|"
],
"oracle_man": [
[
"grep_29"
],
[
"grep_32"
],
[
"grep_3",
"grep_4",
"grep_5"
]
]
} |
10362 | search for lines matching a pattern, printing only the matched text | grep --only-matching "{{search_pattern}}" {{path/to/file}} | [
"grep_3",
"grep_25",
"grep_28",
"grep_35",
"grep_36",
"grep_37"
] | grep | grep | true | {
"token": [
"--only-matching",
"|main|"
],
"oracle_man": [
[
"grep_25",
"grep_28",
"grep_35",
"grep_36",
"grep_37"
],
[
"grep_3",
"grep_4",
"grep_5"
]
]
} |
10363 | search stdin for lines that do not match a pattern | cat {{path/to/file}} | grep --invert-match "{{search_pattern}}" | [
"grep_3",
"grep_16",
"grep_20",
"grep_24"
] | grep | grep | true | {
"token": [
"cat",
"--invert-match",
"|main|"
],
"oracle_man": [
[],
[
"grep_16",
"grep_20",
"grep_24"
],
[
"grep_3",
"grep_4",
"grep_5"
]
]
} |
10364 | capture the entire x server screen in the postscript image format | import -window root {{output.postscript}} | [
"import_5"
] | import | import | true | {
"token": [
"-window",
"root",
"|main|"
],
"oracle_man": [
[
"import_5"
],
[],
[
"import_5",
"import_6",
"import_7",
"import_8"
]
]
} |
10365 | capture contents of a remote x server screen in the png format | import -window root -display {{remote_host}}:{{screen}}.{{display}} {{output.png}} | [
"import_5"
] | import | import | true | {
"token": [
"-window",
"root",
"-display",
"|main|"
],
"oracle_man": [
[
"import_5"
],
[],
[
"import_5"
],
[
"import_5",
"import_6",
"import_7",
"import_8"
]
]
} |
10366 | capture a specific window, given its id as displayed by `xwininfo`, into the jpeg format | import -window {{window_id}} {{output.jpg}} | [
"import_5"
] | import | import | true | {
"token": [
"-window",
"|main|"
],
"oracle_man": [
[
"import_5"
],
[
"import_5",
"import_6",
"import_7",
"import_8"
]
]
} |
10375 | search for a string in tracked files | git grep {{search_string}} | [
"git-grep_2",
"git-grep_3",
"git-grep_56",
"git-grep_57",
"git-grep_58",
"git-grep_59",
"git-grep_62",
"git-grep_63",
"git-grep_64",
"git-grep_65",
"git-grep_66",
"git-grep_67",
"git-grep_68"
] | git-grep | git-grep | true | {
"token": [
"git",
"grep",
"|main|"
],
"oracle_man": [
[
"git-grep_2",
"git-grep_56",
"git-grep_57",
"git-grep_58",
"git-grep_59"
],
[
"git-grep_2",
"git-grep_56",
"git-grep_57",
"git-grep_58",
"git-grep_59",
"git-grep_62",
"git-grep_63",
"git-grep_64",
"git-grep_65",
"git-grep_66",
"git-grep_67",
"git-grep_68"
],
[
"git-grep_3"
]
]
} |
10376 | search for a string in files matching a pattern in tracked files | git grep {{search_string}} -- {{file_glob_pattern}} | [
"git-grep_2",
"git-grep_3",
"git-grep_4",
"git-grep_5",
"git-grep_6",
"git-grep_7",
"git-grep_8",
"git-grep_9",
"git-grep_10",
"git-grep_11",
"git-grep_12",
"git-grep_13",
"git-grep_15",
"git-grep_16",
"git-grep_17",
"git-grep_18",
"git-grep_19",
"git-grep_21",
"git-grep_22",
"git-grep_23",
"git-grep_25",
"git-grep_26",
"git-grep_27",
"git-grep_28",
"git-grep_29",
"git-grep_30",
"git-grep_31",
"git-grep_32",
"git-grep_33",
"git-grep_34",
"git-grep_35",
"git-grep_36",
"git-grep_37",
"git-grep_38",
"git-grep_39",
"git-grep_40",
"git-grep_41",
"git-grep_42",
"git-grep_45",
"git-grep_46",
"git-grep_49",
"git-grep_50",
"git-grep_51",
"git-grep_53",
"git-grep_56",
"git-grep_57",
"git-grep_58",
"git-grep_59",
"git-grep_60",
"git-grep_61",
"git-grep_62",
"git-grep_63",
"git-grep_64",
"git-grep_65",
"git-grep_66",
"git-grep_67",
"git-grep_68"
] | git-grep | git-grep | true | {
"token": [
"git",
"grep",
"--",
"|main|"
],
"oracle_man": [
[
"git-grep_2",
"git-grep_56",
"git-grep_57",
"git-grep_58",
"git-grep_59"
],
[
"git-grep_2",
"git-grep_56",
"git-grep_57",
"git-grep_58",
"git-grep_59",
"git-grep_62",
"git-grep_63",
"git-grep_64",
"git-grep_65",
"git-grep_66",
"git-grep_67",
"git-grep_68"
],
[
"git-grep_2",
"git-grep_4",
"git-grep_5",
"git-grep_6",
"git-grep_7",
"git-grep_8",
"git-grep_9",
"git-grep_10",
"git-grep_11",
"git-grep_12",
"git-grep_13",
"git-grep_15",
"git-grep_16",
"git-grep_17",
"git-grep_18",
"git-grep_19",
"git-grep_21",
"git-grep_22",
"git-grep_23",
"git-grep_25",
"git-grep_26",
"git-grep_27",
"git-grep_28",
"git-grep_29",
"git-grep_30",
"git-grep_31",
"git-grep_32",
"git-grep_33",
"git-grep_34",
"git-grep_35",
"git-grep_36",
"git-grep_37",
"git-grep_38",
"git-grep_39",
"git-grep_40",
"git-grep_41",
"git-grep_42",
"git-grep_45",
"git-grep_46",
"git-grep_49",
"git-grep_50",
"git-grep_51",
"git-grep_53",
"git-grep_56",
"git-grep_57",
"git-grep_58",
"git-grep_59",
"git-grep_60",
"git-grep_61",
"git-grep_63",
"git-grep_64",
"git-grep_65",
"git-grep_67",
"git-grep_68"
],
[
"git-grep_3"
]
]
} |
10377 | search for a string in tracked files, including submodules | git grep --recurse-submodules {{search_string}} | [
"git-grep_2",
"git-grep_3",
"git-grep_9",
"git-grep_56",
"git-grep_57",
"git-grep_58",
"git-grep_59",
"git-grep_62",
"git-grep_63",
"git-grep_64",
"git-grep_65",
"git-grep_66",
"git-grep_67",
"git-grep_68"
] | git-grep | git-grep | true | {
"token": [
"git",
"grep",
"--recurse-submodules",
"|main|"
],
"oracle_man": [
[
"git-grep_2",
"git-grep_56",
"git-grep_57",
"git-grep_58",
"git-grep_59"
],
[
"git-grep_2",
"git-grep_56",
"git-grep_57",
"git-grep_58",
"git-grep_59",
"git-grep_62",
"git-grep_63",
"git-grep_64",
"git-grep_65",
"git-grep_66",
"git-grep_67",
"git-grep_68"
],
[
"git-grep_2",
"git-grep_9"
],
[
"git-grep_3"
]
]
} |
10378 | search for a string at a specific point in history | git grep {{search_string}} {{HEAD~2}} | [
"git-grep_2",
"git-grep_3",
"git-grep_56",
"git-grep_57",
"git-grep_58",
"git-grep_59",
"git-grep_62",
"git-grep_63",
"git-grep_64",
"git-grep_65",
"git-grep_66",
"git-grep_67",
"git-grep_68"
] | git-grep | git-grep | true | {
"token": [
"git",
"grep",
"|main|"
],
"oracle_man": [
[
"git-grep_2",
"git-grep_56",
"git-grep_57",
"git-grep_58",
"git-grep_59"
],
[
"git-grep_2",
"git-grep_56",
"git-grep_57",
"git-grep_58",
"git-grep_59",
"git-grep_62",
"git-grep_63",
"git-grep_64",
"git-grep_65",
"git-grep_66",
"git-grep_67",
"git-grep_68"
],
[
"git-grep_3"
]
]
} |
10379 | search for a string across all branches | git grep {{search_string}} $(git rev-list --all) | [
"git-grep_2",
"git-grep_3",
"git-grep_56",
"git-grep_57",
"git-grep_58",
"git-grep_59",
"git-grep_62",
"git-grep_63",
"git-grep_64",
"git-grep_65",
"git-grep_66",
"git-grep_67",
"git-grep_68"
] | git-grep | git-grep | true | {
"token": [
"git",
"grep",
"$(git",
"rev-list",
"--all)",
"|main|"
],
"oracle_man": [
[
"git-grep_2",
"git-grep_56",
"git-grep_57",
"git-grep_58",
"git-grep_59"
],
[
"git-grep_2",
"git-grep_56",
"git-grep_57",
"git-grep_58",
"git-grep_59",
"git-grep_62",
"git-grep_63",
"git-grep_64",
"git-grep_65",
"git-grep_66",
"git-grep_67",
"git-grep_68"
],
[],
[],
[],
[
"git-grep_3"
]
]
} |
10384 | check if an ip address is allowed to send an email from the specified email address | spfquery -ip {{8.8.8.8}} -sender {{[email protected]}} | [
"spfquery_2",
"spfquery_3",
"spfquery_8"
] | spfquery | spfquery | true | {
"token": [
"-ip",
"-sender",
"|main|"
],
"oracle_man": [
[
"spfquery_2",
"spfquery_3"
],
[
"spfquery_2"
],
[
"spfquery_8",
"spfquery_9",
"spfquery_10",
"spfquery_11",
"spfquery_12"
]
]
} |
10385 | turn on debugging output | spfquery -ip {{8.8.8.8}} -sender {{[email protected]}} --debug | [
"spfquery_2",
"spfquery_3",
"spfquery_8",
"spfquery_13"
] | spfquery | spfquery | true | {
"token": [
"-ip",
"-sender",
"--debug",
"|main|"
],
"oracle_man": [
[
"spfquery_2",
"spfquery_3"
],
[
"spfquery_2"
],
[
"spfquery_13"
],
[
"spfquery_8",
"spfquery_9",
"spfquery_10",
"spfquery_11",
"spfquery_12"
]
]
} |
10391 | compress a jpeg image | guetzli {{input.jpg}} {{output.jpg}} | [
"guetzli_3"
] | guetzli | guetzli | true | {
"token": [
"|main|"
],
"oracle_man": [
[
"guetzli_3"
]
]
} |
10392 | create a compressed jpeg from a png | guetzli {{input.png}} {{output.jpg}} | [
"guetzli_3"
] | guetzli | guetzli | true | {
"token": [
"|main|"
],
"oracle_man": [
[
"guetzli_3"
]
]
} |
10393 | compress a jpeg with the desired visual quality (84100) | guetzli --quality {{quality_value}} {{input.jpg}} {{output.jpg}} | [
"guetzli_3",
"guetzli_5"
] | guetzli | guetzli | true | {
"token": [
"--quality",
"|main|"
],
"oracle_man": [
[
"guetzli_5"
],
[
"guetzli_3"
]
]
} |
10394 | wait for a process to finish given its process id (pid) and return its exit status | wait {{pid}} | [
"wait_7"
] | wait | wait | true | {
"token": [
"|main|"
],
"oracle_man": [
[
"wait_7",
"wait_8",
"wait_9",
"wait_10",
"wait_11",
"wait_12",
"wait_13",
"wait_14",
"wait_15",
"wait_16",
"wait_17",
"wait_18",
"wait_19",
"wait_20",
"wait_21",
"wait_22",
"wait_23",
"wait_24",
"wait_25",
"wait_26",
"wait_27",
"wait_28",
"wait_29",
"wait_30",
"wait_31",
"wait_32",
"wait_33",
"wait_34",
"wait_35",
"wait_36",
"wait_37",
"wait_38",
"wait_39",
"wait_40",
"wait_41",
"wait_42",
"wait_43",
"wait_44",
"wait_45",
"wait_46",
"wait_47",
"wait_48",
"wait_49",
"wait_50",
"wait_51",
"wait_52"
]
]
} |
10395 | wait for all processes known to the invoking shell to finish | wait | [
"wait_7"
] | wait | wait | true | {
"token": [
"|main|"
],
"oracle_man": [
[
"wait_7",
"wait_8",
"wait_9",
"wait_10",
"wait_11",
"wait_12",
"wait_13",
"wait_14",
"wait_15",
"wait_16",
"wait_17",
"wait_18",
"wait_19",
"wait_20",
"wait_21",
"wait_22",
"wait_23",
"wait_24",
"wait_25",
"wait_26",
"wait_27",
"wait_28",
"wait_29",
"wait_30",
"wait_31",
"wait_32",
"wait_33",
"wait_34",
"wait_35",
"wait_36",
"wait_37",
"wait_38",
"wait_39",
"wait_40",
"wait_41",
"wait_42",
"wait_43",
"wait_44",
"wait_45",
"wait_46",
"wait_47",
"wait_48",
"wait_49",
"wait_50",
"wait_51",
"wait_52"
]
]
} |
10399 | list all reverse socket connections from emulators and devices | adb reverse --list | [
"adb_3",
"adb_32",
"adb_44",
"adb_45",
"adb_51",
"adb_52",
"adb_53"
] | adb | adb-reverse | true | {
"token": [
"reverse",
"--list",
"|main|"
],
"oracle_man": [
[
"adb_44",
"adb_45",
"adb_51",
"adb_52",
"adb_53"
],
[
"adb_32",
"adb_44"
],
[
"adb_3",
"adb_4",
"adb_5",
"adb_6",
"adb_7",
"adb_8"
]
]
} |
10400 | reverse a tcp port from an emulator or device to localhost | adb reverse tcp:{{remote_port}} tcp:{{local_port}} | [
"adb_3",
"adb_44",
"adb_45",
"adb_51",
"adb_52",
"adb_53"
] | adb | adb-reverse | true | {
"token": [
"reverse",
"|main|"
],
"oracle_man": [
[
"adb_44",
"adb_45",
"adb_51",
"adb_52",
"adb_53"
],
[
"adb_3",
"adb_4",
"adb_5",
"adb_6",
"adb_7",
"adb_8"
]
]
} |
10401 | remove a reverse socket connections from an emulator or device | adb reverse --remove tcp:{{remote_port}} | [
"adb_3",
"adb_42",
"adb_43",
"adb_44",
"adb_45",
"adb_51",
"adb_52",
"adb_53"
] | adb | adb-reverse | true | {
"token": [
"reverse",
"--remove",
"|main|"
],
"oracle_man": [
[
"adb_44",
"adb_45",
"adb_51",
"adb_52",
"adb_53"
],
[
"adb_42",
"adb_43",
"adb_52",
"adb_53"
],
[
"adb_3",
"adb_4",
"adb_5",
"adb_6",
"adb_7",
"adb_8"
]
]
} |
10402 | remove all reverse socket connections from all emulators and devices | adb reverse --remove-all | [
"adb_3",
"adb_43",
"adb_44",
"adb_45",
"adb_51",
"adb_52",
"adb_53"
] | adb | adb-reverse | true | {
"token": [
"reverse",
"--remove-all",
"|main|"
],
"oracle_man": [
[
"adb_44",
"adb_45",
"adb_51",
"adb_52",
"adb_53"
],
[
"adb_43",
"adb_53"
],
[
"adb_3",
"adb_4",
"adb_5",
"adb_6",
"adb_7",
"adb_8"
]
]
} |
10403 | process macros in a file | m4 {{path/to/file}} | [
"m4_3"
] | m4 | m4 | true | {
"token": [
"|main|"
],
"oracle_man": [
[
"m4_3",
"m4_4",
"m4_5",
"m4_6",
"m4_7",
"m4_8",
"m4_9",
"m4_10",
"m4_11",
"m4_12",
"m4_13",
"m4_14",
"m4_15",
"m4_16",
"m4_17",
"m4_18",
"m4_19",
"m4_20",
"m4_21",
"m4_22",
"m4_23",
"m4_24",
"m4_25",
"m4_26",
"m4_27",
"m4_28",
"m4_29",
"m4_30",
"m4_31",
"m4_32",
"m4_33",
"m4_34",
"m4_35",
"m4_36",
"m4_37",
"m4_38",
"m4_39",
"m4_40"
]
]
} |
10404 | define a macro before processing files | m4 -D{{macro_name}}={{macro_value}} {{path/to/file}} | [
"m4_3"
] | m4 | m4 | true | {
"token": [
"|main|"
],
"oracle_man": [
[
"m4_3",
"m4_4",
"m4_5",
"m4_6",
"m4_7",
"m4_8",
"m4_9",
"m4_10",
"m4_11",
"m4_12",
"m4_13",
"m4_14",
"m4_15",
"m4_16",
"m4_17",
"m4_18",
"m4_19",
"m4_20",
"m4_21",
"m4_22",
"m4_23",
"m4_24",
"m4_25",
"m4_26",
"m4_27",
"m4_28",
"m4_29",
"m4_30",
"m4_31",
"m4_32",
"m4_33",
"m4_34",
"m4_35",
"m4_36",
"m4_37",
"m4_38",
"m4_39",
"m4_40"
]
]
} |
10412 | [a]rchive a file or directory | 7z a {{path/to/archive.7z}} {{path/to/file_or_directory}} | [
"7z_3",
"7z_5"
] | 7z | 7z | true | {
"token": [
"a",
"|main|"
],
"oracle_man": [
[
"7z_3",
"7z_5"
],
[
"7z_3",
"7z_4"
]
]
} |
10413 | encrypt an existing archive (including filenames) | 7z a {{path/to/encrypted.7z}} -p{{password}} -mhe=on {{path/to/archive.7z}} | [
"7z_3",
"7z_5",
"7z_18"
] | 7z | 7z | true | {
"token": [
"a",
"-mhe=on",
"|main|"
],
"oracle_man": [
[
"7z_3",
"7z_5"
],
[
"7z_18"
],
[
"7z_3",
"7z_4"
]
]
} |
10414 | e[x]tract an archive preserving the original directory structure | 7z x {{path/to/archive.7z}} | [
"7z_3",
"7z_11"
] | 7z | 7z | true | {
"token": [
"x",
"|main|"
],
"oracle_man": [
[
"7z_11"
],
[
"7z_3",
"7z_4"
]
]
} |
10415 | e[x]tract an archive to a specific directory | 7z x {{path/to/archive.7z}} -o{{path/to/output}} | [
"7z_3",
"7z_11"
] | 7z | 7z | true | {
"token": [
"x",
"|main|"
],
"oracle_man": [
[
"7z_11"
],
[
"7z_3",
"7z_4"
]
]
} |
10416 | e[x]tract an archive to stdout | 7z x {{path/to/archive.7z}} -so | [
"7z_3",
"7z_11",
"7z_24"
] | 7z | 7z | true | {
"token": [
"x",
"-so",
"|main|"
],
"oracle_man": [
[
"7z_11"
],
[
"7z_24"
],
[
"7z_3",
"7z_4"
]
]
} |
10417 | [a]rchive using a specific archive type | 7z a -t{{7z|zip|gzip|bzip2|lzip}} {{path/to/archive.7z}} {{path/to/file_or_directory}} | [
"7z_3",
"7z_5"
] | 7z | 7z | true | {
"token": [
"a",
"|main|"
],
"oracle_man": [
[
"7z_3",
"7z_5"
],
[
"7z_3",
"7z_4"
]
]
} |
10418 | [l]ist the contents of an archive | 7z l {{path/to/archive.7z}} | [
"7z_3",
"7z_8"
] | 7z | 7z | true | {
"token": [
"l",
"|main|"
],
"oracle_man": [
[
"7z_8"
],
[
"7z_3",
"7z_4"
]
]
} |
10419 | list available archive types | 7z i | [
"7z_3"
] | 7z | 7z | true | {
"token": [
"i",
"|main|"
],
"oracle_man": [
[],
[
"7z_3",
"7z_4"
]
]
} |
10424 | create a bundle file that contains all objects and references of a specific branch | git bundle create {{path/to/file.bundle}} {{branch_name}} | [
"git-bundle_2",
"git-bundle_3",
"git-bundle_12",
"git-bundle_25",
"git-bundle_27",
"git-bundle_29",
"git-bundle_31",
"git-bundle_34",
"git-bundle_36",
"git-bundle_37",
"git-bundle_40",
"git-bundle_45",
"git-bundle_55",
"git-bundle_57",
"git-bundle_59",
"git-bundle_61",
"git-bundle_63",
"git-bundle_64",
"git-bundle_66"
] | git-bundle | git-bundle | true | {
"token": [
"git",
"bundle",
"create",
"|main|"
],
"oracle_man": [
[
"git-bundle_2",
"git-bundle_25",
"git-bundle_27",
"git-bundle_29",
"git-bundle_31",
"git-bundle_34",
"git-bundle_36",
"git-bundle_40",
"git-bundle_45",
"git-bundle_55",
"git-bundle_57",
"git-bundle_59",
"git-bundle_61",
"git-bundle_64",
"git-bundle_66"
],
[
"git-bundle_2",
"git-bundle_25",
"git-bundle_27",
"git-bundle_29",
"git-bundle_31",
"git-bundle_34",
"git-bundle_36",
"git-bundle_37",
"git-bundle_40",
"git-bundle_55",
"git-bundle_57",
"git-bundle_59",
"git-bundle_61",
"git-bundle_63"
],
[
"git-bundle_2",
"git-bundle_12",
"git-bundle_27",
"git-bundle_29",
"git-bundle_31",
"git-bundle_34",
"git-bundle_36",
"git-bundle_55",
"git-bundle_57",
"git-bundle_59"
],
[
"git-bundle_3",
"git-bundle_4",
"git-bundle_5",
"git-bundle_6"
]
]
} |
10425 | create a bundle file of all branches | git bundle create {{path/to/file.bundle}} --all | [
"git-bundle_2",
"git-bundle_3",
"git-bundle_12",
"git-bundle_19",
"git-bundle_20",
"git-bundle_25",
"git-bundle_27",
"git-bundle_29",
"git-bundle_31",
"git-bundle_34",
"git-bundle_36",
"git-bundle_37",
"git-bundle_39",
"git-bundle_40",
"git-bundle_45",
"git-bundle_55",
"git-bundle_57",
"git-bundle_59",
"git-bundle_61",
"git-bundle_63",
"git-bundle_64",
"git-bundle_66"
] | git-bundle | git-bundle | true | {
"token": [
"git",
"bundle",
"create",
"--all",
"|main|"
],
"oracle_man": [
[
"git-bundle_2",
"git-bundle_25",
"git-bundle_27",
"git-bundle_29",
"git-bundle_31",
"git-bundle_34",
"git-bundle_36",
"git-bundle_40",
"git-bundle_45",
"git-bundle_55",
"git-bundle_57",
"git-bundle_59",
"git-bundle_61",
"git-bundle_64",
"git-bundle_66"
],
[
"git-bundle_2",
"git-bundle_25",
"git-bundle_27",
"git-bundle_29",
"git-bundle_31",
"git-bundle_34",
"git-bundle_36",
"git-bundle_37",
"git-bundle_40",
"git-bundle_55",
"git-bundle_57",
"git-bundle_59",
"git-bundle_61",
"git-bundle_63"
],
[
"git-bundle_2",
"git-bundle_12",
"git-bundle_27",
"git-bundle_29",
"git-bundle_31",
"git-bundle_34",
"git-bundle_36",
"git-bundle_55",
"git-bundle_57",
"git-bundle_59"
],
[
"git-bundle_2",
"git-bundle_19",
"git-bundle_20",
"git-bundle_39"
],
[
"git-bundle_3",
"git-bundle_4",
"git-bundle_5",
"git-bundle_6"
]
]
} |
10426 | create a bundle file of the last 5 commits of the current branch | git bundle create {{path/to/file.bundle}} -{{5}} {{HEAD}} | [
"git-bundle_2",
"git-bundle_3",
"git-bundle_12",
"git-bundle_25",
"git-bundle_27",
"git-bundle_29",
"git-bundle_31",
"git-bundle_34",
"git-bundle_36",
"git-bundle_37",
"git-bundle_40",
"git-bundle_45",
"git-bundle_55",
"git-bundle_57",
"git-bundle_59",
"git-bundle_61",
"git-bundle_63",
"git-bundle_64",
"git-bundle_66"
] | git-bundle | git-bundle | true | {
"token": [
"git",
"bundle",
"create",
"|main|"
],
"oracle_man": [
[
"git-bundle_2",
"git-bundle_25",
"git-bundle_27",
"git-bundle_29",
"git-bundle_31",
"git-bundle_34",
"git-bundle_36",
"git-bundle_40",
"git-bundle_45",
"git-bundle_55",
"git-bundle_57",
"git-bundle_59",
"git-bundle_61",
"git-bundle_64",
"git-bundle_66"
],
[
"git-bundle_2",
"git-bundle_25",
"git-bundle_27",
"git-bundle_29",
"git-bundle_31",
"git-bundle_34",
"git-bundle_36",
"git-bundle_37",
"git-bundle_40",
"git-bundle_55",
"git-bundle_57",
"git-bundle_59",
"git-bundle_61",
"git-bundle_63"
],
[
"git-bundle_2",
"git-bundle_12",
"git-bundle_27",
"git-bundle_29",
"git-bundle_31",
"git-bundle_34",
"git-bundle_36",
"git-bundle_55",
"git-bundle_57",
"git-bundle_59"
],
[
"git-bundle_3",
"git-bundle_4",
"git-bundle_5",
"git-bundle_6"
]
]
} |
10427 | create a bundle file of the latest 7 days | git bundle create {{path/to/file.bundle}} --since={{7.days}} {{HEAD}} | [
"git-bundle_2",
"git-bundle_3",
"git-bundle_12",
"git-bundle_25",
"git-bundle_27",
"git-bundle_29",
"git-bundle_31",
"git-bundle_34",
"git-bundle_36",
"git-bundle_37",
"git-bundle_40",
"git-bundle_45",
"git-bundle_55",
"git-bundle_57",
"git-bundle_59",
"git-bundle_61",
"git-bundle_63",
"git-bundle_64",
"git-bundle_66"
] | git-bundle | git-bundle | true | {
"token": [
"git",
"bundle",
"create",
"--since",
"|main|"
],
"oracle_man": [
[
"git-bundle_2",
"git-bundle_25",
"git-bundle_27",
"git-bundle_29",
"git-bundle_31",
"git-bundle_34",
"git-bundle_36",
"git-bundle_40",
"git-bundle_45",
"git-bundle_55",
"git-bundle_57",
"git-bundle_59",
"git-bundle_61",
"git-bundle_64",
"git-bundle_66"
],
[
"git-bundle_2",
"git-bundle_25",
"git-bundle_27",
"git-bundle_29",
"git-bundle_31",
"git-bundle_34",
"git-bundle_36",
"git-bundle_37",
"git-bundle_40",
"git-bundle_55",
"git-bundle_57",
"git-bundle_59",
"git-bundle_61",
"git-bundle_63"
],
[
"git-bundle_2",
"git-bundle_12",
"git-bundle_27",
"git-bundle_29",
"git-bundle_31",
"git-bundle_34",
"git-bundle_36",
"git-bundle_55",
"git-bundle_57",
"git-bundle_59"
],
[
"git-bundle_25",
"git-bundle_57"
],
[
"git-bundle_3",
"git-bundle_4",
"git-bundle_5",
"git-bundle_6"
]
]
} |
10428 | verify that a bundle file is valid and can be applied to the current repository | git bundle verify {{path/to/file.bundle}} | [
"git-bundle_2",
"git-bundle_3",
"git-bundle_13",
"git-bundle_25",
"git-bundle_27",
"git-bundle_29",
"git-bundle_31",
"git-bundle_34",
"git-bundle_36",
"git-bundle_37",
"git-bundle_40",
"git-bundle_45",
"git-bundle_55",
"git-bundle_57",
"git-bundle_59",
"git-bundle_61",
"git-bundle_63",
"git-bundle_64",
"git-bundle_66"
] | git-bundle | git-bundle | true | {
"token": [
"git",
"bundle",
"verify",
"|main|"
],
"oracle_man": [
[
"git-bundle_2",
"git-bundle_25",
"git-bundle_27",
"git-bundle_29",
"git-bundle_31",
"git-bundle_34",
"git-bundle_36",
"git-bundle_40",
"git-bundle_45",
"git-bundle_55",
"git-bundle_57",
"git-bundle_59",
"git-bundle_61",
"git-bundle_64",
"git-bundle_66"
],
[
"git-bundle_2",
"git-bundle_25",
"git-bundle_27",
"git-bundle_29",
"git-bundle_31",
"git-bundle_34",
"git-bundle_36",
"git-bundle_37",
"git-bundle_40",
"git-bundle_55",
"git-bundle_57",
"git-bundle_59",
"git-bundle_61",
"git-bundle_63"
],
[
"git-bundle_13",
"git-bundle_61"
],
[
"git-bundle_3",
"git-bundle_4",
"git-bundle_5",
"git-bundle_6"
]
]
} |
10429 | print to the standard output the list of references contained in a bundle | git bundle unbundle {{path/to/file.bundle}} | [
"git-bundle_2",
"git-bundle_3",
"git-bundle_15",
"git-bundle_25",
"git-bundle_27",
"git-bundle_29",
"git-bundle_31",
"git-bundle_34",
"git-bundle_36",
"git-bundle_37",
"git-bundle_40",
"git-bundle_45",
"git-bundle_55",
"git-bundle_57",
"git-bundle_59",
"git-bundle_61",
"git-bundle_63",
"git-bundle_64",
"git-bundle_66"
] | git-bundle | git-bundle | true | {
"token": [
"git",
"bundle",
"unbundle",
"|main|"
],
"oracle_man": [
[
"git-bundle_2",
"git-bundle_25",
"git-bundle_27",
"git-bundle_29",
"git-bundle_31",
"git-bundle_34",
"git-bundle_36",
"git-bundle_40",
"git-bundle_45",
"git-bundle_55",
"git-bundle_57",
"git-bundle_59",
"git-bundle_61",
"git-bundle_64",
"git-bundle_66"
],
[
"git-bundle_2",
"git-bundle_25",
"git-bundle_27",
"git-bundle_29",
"git-bundle_31",
"git-bundle_34",
"git-bundle_36",
"git-bundle_37",
"git-bundle_40",
"git-bundle_55",
"git-bundle_57",
"git-bundle_59",
"git-bundle_61",
"git-bundle_63"
],
[
"git-bundle_15"
],
[
"git-bundle_3",
"git-bundle_4",
"git-bundle_5",
"git-bundle_6"
]
]
} |
10430 | unbundle a specific branch from a bundle file into the current repository | git pull {{path/to/file.bundle}} {{branch_name}} | [
"git-bundle_2",
"git-bundle_3",
"git-bundle_25",
"git-bundle_27",
"git-bundle_29",
"git-bundle_31",
"git-bundle_34",
"git-bundle_36",
"git-bundle_40",
"git-bundle_45",
"git-bundle_55",
"git-bundle_57",
"git-bundle_59",
"git-bundle_61",
"git-bundle_64",
"git-bundle_66"
] | git-bundle | git-bundle | true | {
"token": [
"git",
"pull",
"|main|"
],
"oracle_man": [
[
"git-bundle_2",
"git-bundle_25",
"git-bundle_27",
"git-bundle_29",
"git-bundle_31",
"git-bundle_34",
"git-bundle_36",
"git-bundle_40",
"git-bundle_45",
"git-bundle_55",
"git-bundle_57",
"git-bundle_59",
"git-bundle_61",
"git-bundle_64",
"git-bundle_66"
],
[],
[
"git-bundle_3",
"git-bundle_4",
"git-bundle_5",
"git-bundle_6"
]
]
} |
10437 | launch a presentation in the terminal from a markdown file | mdp {{presentation.md}} | [
"mdp_3"
] | mdp | mdp | true | {
"token": [
"|main|"
],
"oracle_man": [
[
"mdp_3",
"mdp_4"
]
]
} |
10438 | disable fading transitions | mdp --nofade {{presentation.md}} | [
"mdp_3",
"mdp_7"
] | mdp | mdp | true | {
"token": [
"--nofade",
"|main|"
],
"oracle_man": [
[
"mdp_7"
],
[
"mdp_3",
"mdp_4"
]
]
} |
10439 | invert font colors to use in terminals with light background | mdp --invert {{presentation.md}} | [
"mdp_3",
"mdp_8"
] | mdp | mdp | true | {
"token": [
"--invert",
"|main|"
],
"oracle_man": [
[
"mdp_8"
],
[
"mdp_3",
"mdp_4"
]
]
} |
10440 | disable transparency in transparent terminals | mdp --notrans {{presentation.md}} | [
"mdp_3",
"mdp_9"
] | mdp | mdp | true | {
"token": [
"--notrans",
"|main|"
],
"oracle_man": [
[
"mdp_9"
],
[
"mdp_3",
"mdp_4"
]
]
} |
10441 | register the current repository in the user's list of repositories to daily have maintenance run | git maintenance register | [
"git-maintenance_2",
"git-maintenance_3",
"git-maintenance_5",
"git-maintenance_6",
"git-maintenance_7",
"git-maintenance_13",
"git-maintenance_30",
"git-maintenance_32",
"git-maintenance_51",
"git-maintenance_52",
"git-maintenance_55",
"git-maintenance_59"
] | git-maintenance | git-maintenance | true | {
"token": [
"git",
"maintenance",
"register",
"|main|"
],
"oracle_man": [
[
"git-maintenance_2",
"git-maintenance_5",
"git-maintenance_13",
"git-maintenance_30",
"git-maintenance_51",
"git-maintenance_52",
"git-maintenance_55",
"git-maintenance_59"
],
[
"git-maintenance_2",
"git-maintenance_5",
"git-maintenance_13",
"git-maintenance_30",
"git-maintenance_32",
"git-maintenance_51",
"git-maintenance_52",
"git-maintenance_55",
"git-maintenance_59"
],
[
"git-maintenance_6",
"git-maintenance_7",
"git-maintenance_13"
],
[
"git-maintenance_3",
"git-maintenance_4",
"git-maintenance_5"
]
]
} |
10442 | start running maintenance on the current repository | git maintenance start | [
"git-maintenance_2",
"git-maintenance_3",
"git-maintenance_5",
"git-maintenance_13",
"git-maintenance_15",
"git-maintenance_30",
"git-maintenance_32",
"git-maintenance_51",
"git-maintenance_52",
"git-maintenance_55",
"git-maintenance_59"
] | git-maintenance | git-maintenance | true | {
"token": [
"git",
"maintenance",
"start",
"|main|"
],
"oracle_man": [
[
"git-maintenance_2",
"git-maintenance_5",
"git-maintenance_13",
"git-maintenance_30",
"git-maintenance_51",
"git-maintenance_52",
"git-maintenance_55",
"git-maintenance_59"
],
[
"git-maintenance_2",
"git-maintenance_5",
"git-maintenance_13",
"git-maintenance_30",
"git-maintenance_32",
"git-maintenance_51",
"git-maintenance_52",
"git-maintenance_55",
"git-maintenance_59"
],
[
"git-maintenance_15",
"git-maintenance_51",
"git-maintenance_59"
],
[
"git-maintenance_3",
"git-maintenance_4",
"git-maintenance_5"
]
]
} |
10443 | halt the background maintenance schedule for the current repository | git maintenance stop | [
"git-maintenance_2",
"git-maintenance_3",
"git-maintenance_5",
"git-maintenance_13",
"git-maintenance_16",
"git-maintenance_30",
"git-maintenance_32",
"git-maintenance_51",
"git-maintenance_52",
"git-maintenance_55",
"git-maintenance_59"
] | git-maintenance | git-maintenance | true | {
"token": [
"git",
"maintenance",
"stop",
"|main|"
],
"oracle_man": [
[
"git-maintenance_2",
"git-maintenance_5",
"git-maintenance_13",
"git-maintenance_30",
"git-maintenance_51",
"git-maintenance_52",
"git-maintenance_55",
"git-maintenance_59"
],
[
"git-maintenance_2",
"git-maintenance_5",
"git-maintenance_13",
"git-maintenance_30",
"git-maintenance_32",
"git-maintenance_51",
"git-maintenance_52",
"git-maintenance_55",
"git-maintenance_59"
],
[
"git-maintenance_16",
"git-maintenance_52"
],
[
"git-maintenance_3",
"git-maintenance_4",
"git-maintenance_5"
]
]
} |
10444 | remove the current repository from the user's maintenance repository list | git maintenance unregister | [
"git-maintenance_2",
"git-maintenance_3",
"git-maintenance_5",
"git-maintenance_13",
"git-maintenance_17",
"git-maintenance_30",
"git-maintenance_32",
"git-maintenance_51",
"git-maintenance_52",
"git-maintenance_55",
"git-maintenance_59"
] | git-maintenance | git-maintenance | true | {
"token": [
"git",
"maintenance",
"unregister",
"|main|"
],
"oracle_man": [
[
"git-maintenance_2",
"git-maintenance_5",
"git-maintenance_13",
"git-maintenance_30",
"git-maintenance_51",
"git-maintenance_52",
"git-maintenance_55",
"git-maintenance_59"
],
[
"git-maintenance_2",
"git-maintenance_5",
"git-maintenance_13",
"git-maintenance_30",
"git-maintenance_32",
"git-maintenance_51",
"git-maintenance_52",
"git-maintenance_55",
"git-maintenance_59"
],
[
"git-maintenance_17"
],
[
"git-maintenance_3",
"git-maintenance_4",
"git-maintenance_5"
]
]
} |
10445 | run a specific maintenance task on the current repository | git maintenance run --task={{commit-graph|gc|incremental-repack|loose-objects|pack-refs|prefetch}} | [
"git-maintenance_2",
"git-maintenance_3",
"git-maintenance_5",
"git-maintenance_13",
"git-maintenance_14",
"git-maintenance_26",
"git-maintenance_28",
"git-maintenance_30",
"git-maintenance_32",
"git-maintenance_34",
"git-maintenance_51",
"git-maintenance_52",
"git-maintenance_55",
"git-maintenance_59"
] | git-maintenance | git-maintenance | true | {
"token": [
"git",
"maintenance",
"run",
"--task",
"|main|"
],
"oracle_man": [
[
"git-maintenance_2",
"git-maintenance_5",
"git-maintenance_13",
"git-maintenance_30",
"git-maintenance_51",
"git-maintenance_52",
"git-maintenance_55",
"git-maintenance_59"
],
[
"git-maintenance_2",
"git-maintenance_5",
"git-maintenance_13",
"git-maintenance_30",
"git-maintenance_32",
"git-maintenance_51",
"git-maintenance_52",
"git-maintenance_55",
"git-maintenance_59"
],
[
"git-maintenance_2",
"git-maintenance_14"
],
[
"git-maintenance_14",
"git-maintenance_26",
"git-maintenance_28",
"git-maintenance_34"
],
[
"git-maintenance_3",
"git-maintenance_4",
"git-maintenance_5"
]
]
} |
10446 | run a shadowsocks proxy by specifying the host, server port, local port, password, and encryption method | ss-local -s {{host}} -p {{server_port}} -l {{local port}} -k {{password}} -m {{encrypt_method}} | [
"ss-local_0",
"ss-local_1",
"ss-local_2",
"ss-local_3",
"ss-local_4",
"ss-local_5",
"ss-local_6",
"ss-local_7",
"ss-local_8",
"ss-local_9",
"ss-local_10",
"ss-local_11",
"ss-local_12",
"ss-local_13",
"ss-local_19",
"ss-local_23",
"ss-local_30",
"ss-local_33",
"ss-local_34",
"ss-local_37",
"ss-local_38",
"ss-local_41",
"ss-local_42"
] | ss-local | ss-local | true | {
"token": [
"-s",
"-p",
"-l",
"-k",
"-m",
"|main|"
],
"oracle_man": [
[
"ss-local_2",
"ss-local_5",
"ss-local_9",
"ss-local_42"
],
[
"ss-local_2",
"ss-local_6",
"ss-local_8",
"ss-local_12",
"ss-local_13",
"ss-local_30",
"ss-local_37",
"ss-local_38",
"ss-local_42"
],
[
"ss-local_0",
"ss-local_1",
"ss-local_2",
"ss-local_3",
"ss-local_4",
"ss-local_7",
"ss-local_11",
"ss-local_19",
"ss-local_23",
"ss-local_41",
"ss-local_42"
],
[
"ss-local_2",
"ss-local_8",
"ss-local_9",
"ss-local_42"
],
[
"ss-local_2",
"ss-local_10",
"ss-local_12",
"ss-local_33",
"ss-local_34",
"ss-local_42"
],
[
"ss-local_3",
"ss-local_4"
]
]
} |
10447 | run a shadowsocks proxy by specifying the config file | ss-local -c {{path/to/config/file.json}} | [
"ss-local_2",
"ss-local_3",
"ss-local_12",
"ss-local_18",
"ss-local_42"
] | ss-local | ss-local | true | {
"token": [
"-c",
"|main|"
],
"oracle_man": [
[
"ss-local_2",
"ss-local_12",
"ss-local_18",
"ss-local_42"
],
[
"ss-local_3",
"ss-local_4"
]
]
} |
10448 | use a plugin to run the proxy client | ss-local --plugin {{plugin_name}} --plugin-opts {{plugin_options}} | [
"ss-local_2",
"ss-local_3",
"ss-local_37",
"ss-local_38"
] | ss-local | ss-local | true | {
"token": [
"--plugin",
"--plugin-opts",
"|main|"
],
"oracle_man": [
[
"ss-local_2",
"ss-local_37",
"ss-local_38"
],
[
"ss-local_2",
"ss-local_38"
],
[
"ss-local_3",
"ss-local_4"
]
]
} |
10449 | enable tcp fast open | ss-local --fast-open | [
"ss-local_2",
"ss-local_3",
"ss-local_28"
] | ss-local | ss-local | true | {
"token": [
"--fast-open",
"|main|"
],
"oracle_man": [
[
"ss-local_2",
"ss-local_28"
],
[
"ss-local_3",
"ss-local_4"
]
]
} |
10463 | look up the canonical name associated with an email address | git check-mailmap "<{{[email protected]}}>" | [
"git-check-mailmap_2",
"git-check-mailmap_3"
] | git-check-mailmap | git-check-mailmap | true | {
"token": [
"git",
"check-mailmap",
"|main|"
],
"oracle_man": [
[
"git-check-mailmap_2"
],
[
"git-check-mailmap_2"
],
[
"git-check-mailmap_3"
]
]
} |
10470 | play a file | vlc {{path/to/file}} | [
"vlc_3"
] | vlc | vlc | true | {
"token": [
"|main|"
],
"oracle_man": [
[
"vlc_3"
]
]
} |
10471 | play in fullscreen | vlc --fullscreen {{path/to/file}} | [
"vlc_3"
] | vlc | vlc | true | {
"token": [
"--fullscreen",
"|main|"
],
"oracle_man": [
[],
[
"vlc_3"
]
]
} |
10472 | play muted | vlc --no-audio {{path/to/file}} | [
"vlc_3"
] | vlc | vlc | true | {
"token": [
"--no-audio",
"|main|"
],
"oracle_man": [
[],
[
"vlc_3"
]
]
} |
10473 | play repeatedly | vlc --loop {{path/to/file}} | [
"vlc_3"
] | vlc | vlc | true | {
"token": [
"--loop",
"|main|"
],
"oracle_man": [
[],
[
"vlc_3"
]
]
} |
10474 | play video from a url | vlc {{https://www.youtube.com/watch?v=oHg5SJYRHA0}} | [
"vlc_3"
] | vlc | vlc | true | {
"token": [
"|main|"
],
"oracle_man": [
[
"vlc_3"
]
]
} |
10475 | generate a `create table` sql statement for a csv file | csvsql {{path/to/data.csv}} | [
"csvsql_2"
] | csvsql | csvsql | true | {
"token": [
"|main|"
],
"oracle_man": [
[
"csvsql_2",
"csvsql_3",
"csvsql_4",
"csvsql_5",
"csvsql_6",
"csvsql_7",
"csvsql_8",
"csvsql_9",
"csvsql_10"
]
]
} |
10476 | import a csv file into an sql database | csvsql --insert --db "{{mysql://user:password@host/database}}" {{data.csv}} | [
"csvsql_2",
"csvsql_3",
"csvsql_6",
"csvsql_14",
"csvsql_18",
"csvsql_20"
] | csvsql | csvsql | true | {
"token": [
"--insert",
"--db",
"|main|"
],
"oracle_man": [
[
"csvsql_3",
"csvsql_6",
"csvsql_14",
"csvsql_18",
"csvsql_20"
],
[
"csvsql_3",
"csvsql_6",
"csvsql_14",
"csvsql_18",
"csvsql_20"
],
[
"csvsql_2",
"csvsql_3",
"csvsql_4",
"csvsql_5",
"csvsql_6",
"csvsql_7",
"csvsql_8",
"csvsql_9",
"csvsql_10"
]
]
} |
10477 | run an sql query on a csv file | csvsql --query "{{select * from 'data'}}" {{data.csv}} | [
"csvsql_2",
"csvsql_3",
"csvsql_6",
"csvsql_10",
"csvsql_22",
"csvsql_24",
"csvsql_26",
"csvsql_28"
] | csvsql | csvsql | true | {
"token": [
"--query",
"|main|"
],
"oracle_man": [
[
"csvsql_3",
"csvsql_6",
"csvsql_10",
"csvsql_22",
"csvsql_24",
"csvsql_26",
"csvsql_28"
],
[
"csvsql_2",
"csvsql_3",
"csvsql_4",
"csvsql_5",
"csvsql_6",
"csvsql_7",
"csvsql_8",
"csvsql_9",
"csvsql_10"
]
]
} |
10484 | perform the default task in the `build.xml` file | phing | [
"phing_1"
] | phing | phing | true | {
"token": [
"|main|"
],
"oracle_man": [
[
"phing_1"
]
]
} |
10485 | initialise a new build file | phing -i {{path/to/build.xml}} | [
"phing_1",
"phing_22"
] | phing | phing | true | {
"token": [
"-i",
"|main|"
],
"oracle_man": [
[
"phing_22"
],
[
"phing_1"
]
]
} |
10486 | perform a specific task | phing {{task_name}} | [
"phing_1"
] | phing | phing | true | {
"token": [
"|main|"
],
"oracle_man": [
[
"phing_1"
]
]
} |
10487 | specify a custom build file path | phing -f {{path/to/build.xml}} {{task_name}} | [
"phing_1",
"phing_16",
"phing_21"
] | phing | phing | true | {
"token": [
"-f",
"|main|"
],
"oracle_man": [
[
"phing_16",
"phing_21"
],
[
"phing_1"
]
]
} |
10488 | specify a log file to output to | phing -b {{path/to/log_file}} {{task_name}} | [
"phing_1",
"phing_16"
] | phing | phing | true | {
"token": [
"-b",
"|main|"
],
"oracle_man": [
[
"phing_16"
],
[
"phing_1"
]
]
} |
10489 | specify custom properties to use in the build | phing -D{{property}}={{value}} {{task_name}} | [
"phing_1"
] | phing | phing | true | {
"token": [
"|main|"
],
"oracle_man": [
[
"phing_1"
]
]
} |
10490 | specify a custom listener class | phing -listener {{class_name}} {{task_name}} | [
"phing_1",
"phing_15"
] | phing | phing | true | {
"token": [
"-listener",
"|main|"
],
"oracle_man": [
[
"phing_15"
],
[
"phing_1"
]
]
} |
10491 | build using verbose output | phing -verbose {{task_name}} | [
"phing_1",
"phing_8"
] | phing | phing | true | {
"token": [
"-verbose",
"|main|"
],
"oracle_man": [
[
"phing_8"
],
[
"phing_1"
]
]
} |
10492 | log a message to syslog | logger {{message}} | [
"logger_3"
] | logger | logger | true | {
"token": [
"|main|"
],
"oracle_man": [
[
"logger_3",
"logger_4"
]
]
} |
10493 | take input from stdin and log to syslog | echo {{log_entry}} | logger | [
"logger_3"
] | logger | logger | true | {
"token": [
"echo",
"|main|"
],
"oracle_man": [
[],
[
"logger_3",
"logger_4"
]
]
} |
10494 | send the output to a remote syslog server running at a given port. default port is 514 | echo {{log_entry}} | logger --server {{hostname}} --port {{port}} | [
"logger_3",
"logger_6",
"logger_18",
"logger_21",
"logger_45"
] | logger | logger | true | {
"token": [
"echo",
"--server",
"--port",
"|main|"
],
"oracle_man": [
[],
[
"logger_6",
"logger_18",
"logger_45"
],
[
"logger_21"
],
[
"logger_3",
"logger_4"
]
]
} |
10495 | use a specific tag for every line logged. default is the name of logged in user | echo {{log_entry}} | logger --tag {{tag}} | [
"logger_3",
"logger_46"
] | logger | logger | true | {
"token": [
"echo",
"--tag",
"|main|"
],
"oracle_man": [
[],
[
"logger_46"
],
[
"logger_3",
"logger_4"
]
]
} |
10496 | log messages with a given priority. default is `user.notice`. see `man logger` for all priority options | echo {{log_entry}} | logger --priority {{user.warning}} | [
"logger_3",
"logger_22"
] | logger | logger | true | {
"token": [
"echo",
"--priority",
"|main|"
],
"oracle_man": [
[],
[
"logger_22"
],
[
"logger_3",
"logger_4"
]
]
} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.