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 |
---|---|---|---|---|---|---|---|
6410 | show backup snapshots currently stored in the repository | restic --repo {{path/to/repository}} snapshots | [
"restic_3",
"restic_18",
"restic_19"
] | restic | restic | true | {
"token": [
"--repo",
"snapshots",
"|main|"
],
"oracle_man": [
[
"restic_18",
"restic_19"
],
[],
[
"restic_3"
]
]
} |
6411 | restore a specific backup snapshot to a target directory | restic --repo {{path/to/repository}} restore {{latest|snapshot_id}} --target {{path/to/target}} | [
"restic_3",
"restic_18",
"restic_19"
] | restic | restic | true | {
"token": [
"--repo",
"restore",
"--target",
"|main|"
],
"oracle_man": [
[
"restic_18",
"restic_19"
],
[],
[],
[
"restic_3"
]
]
} |
6412 | restore a specific path from a specific backup to a target directory | restic --repo {{path/to/repository}} restore {{snapshot_id}} --target {{path/to/target}} --include {{path/to/restore}} | [
"restic_3",
"restic_18",
"restic_19"
] | restic | restic | true | {
"token": [
"--repo",
"restore",
"--target",
"--include",
"|main|"
],
"oracle_man": [
[
"restic_18",
"restic_19"
],
[],
[],
[],
[
"restic_3"
]
]
} |
6413 | clean up the repository and keep only the most recent snapshot of each unique backup | restic forget --keep-last 1 --prune | [
"restic_0",
"restic_3"
] | restic | restic | true | {
"token": [
"forget",
"--keep-last",
"1",
"--prune",
"|main|"
],
"oracle_man": [
[],
[],
[
"restic_0"
],
[],
[
"restic_3"
]
]
} |
6420 | disable the ability to commit changes of a local file | git lock {{path/to/file}} | [
"git-lock_3",
"git-lock_6"
] | git-lock | git-lock | true | {
"token": [
"git",
"lock",
"|main|"
],
"oracle_man": [
[
"git-lock_6"
],
[
"git-lock_6"
],
[
"git-lock_3"
]
]
} |
6421 | check the style of a single file | pycodestyle {{file.py}} | [
"pycodestyle_1"
] | pycodestyle | pycodestyle | true | {
"token": [
"|main|"
],
"oracle_man": [
[
"pycodestyle_1"
]
]
} |
6422 | check the style of multiple files | pycodestyle {{file1.py}} {{file2.py}} {{file3.py}} | [
"pycodestyle_1"
] | pycodestyle | pycodestyle | true | {
"token": [
"|main|"
],
"oracle_man": [
[
"pycodestyle_1"
]
]
} |
6423 | show only the first occurrence of an error | pycodestyle --first {{file.py}} | [
"pycodestyle_1",
"pycodestyle_11",
"pycodestyle_14"
] | pycodestyle | pycodestyle | true | {
"token": [
"--first",
"|main|"
],
"oracle_man": [
[
"pycodestyle_11",
"pycodestyle_14"
],
[
"pycodestyle_1"
]
]
} |
6424 | show the source code for each error | pycodestyle --show-source {{file.py}} | [
"pycodestyle_1",
"pycodestyle_13",
"pycodestyle_27"
] | pycodestyle | pycodestyle | true | {
"token": [
"--show-source",
"|main|"
],
"oracle_man": [
[
"pycodestyle_13",
"pycodestyle_27"
],
[
"pycodestyle_1"
]
]
} |
6425 | show the specific pep 8 text for each error | pycodestyle --show-pep8 {{file.py}} | [
"pycodestyle_1",
"pycodestyle_14",
"pycodestyle_27"
] | pycodestyle | pycodestyle | true | {
"token": [
"--show-pep8",
"|main|"
],
"oracle_man": [
[
"pycodestyle_14",
"pycodestyle_27"
],
[
"pycodestyle_1"
]
]
} |
6426 | save output to a file | httpry -o {{path/to/file.log}} | [
"httpry_2",
"httpry_3",
"httpry_5",
"httpry_13"
] | httpry | httpry | true | {
"token": [
"-o",
"|main|"
],
"oracle_man": [
[
"httpry_2",
"httpry_5",
"httpry_13"
],
[
"httpry_3"
]
]
} |
6427 | listen on a specific interface and save output to a binary pcap format file | httpry {{eth0}} -b {{path/to/file.pcap}} | [
"httpry_2",
"httpry_3",
"httpry_4"
] | httpry | httpry | true | {
"token": [
"-b",
"|main|"
],
"oracle_man": [
[
"httpry_2",
"httpry_4"
],
[
"httpry_3"
]
]
} |
6428 | filter output by a commaseparated list of http verbs | httpry -m {{get|post|put|head|options|delete|trace|connect|patch}} | [
"httpry_2",
"httpry_3",
"httpry_11"
] | httpry | httpry | true | {
"token": [
"-m",
"|main|"
],
"oracle_man": [
[
"httpry_2",
"httpry_11"
],
[
"httpry_3"
]
]
} |
6429 | read from an input capture file and filter by ip | httpry -r {{path/to/file.log}} '{{host 192.168.5.25}}' | [
"httpry_2",
"httpry_3",
"httpry_17"
] | httpry | httpry | true | {
"token": [
"-r",
"|main|"
],
"oracle_man": [
[
"httpry_2",
"httpry_17"
],
[
"httpry_3"
]
]
} |
6430 | run as daemon process | httpry -d -o {{path/to/file.log}} | [
"httpry_2",
"httpry_3",
"httpry_5",
"httpry_6",
"httpry_11",
"httpry_13"
] | httpry | httpry | true | {
"token": [
"-d",
"-o",
"|main|"
],
"oracle_man": [
[
"httpry_2",
"httpry_5",
"httpry_6",
"httpry_11"
],
[
"httpry_2",
"httpry_5",
"httpry_13"
],
[
"httpry_3"
]
]
} |
6431 | start supervisord with specified configuration file | supervisord -c {{path/to/file}} | [
"supervisord_1",
"supervisord_13",
"supervisord_16",
"supervisord_28",
"supervisord_44",
"supervisord_51",
"supervisord_72"
] | supervisord | supervisord | true | {
"token": [
"-c",
"|main|"
],
"oracle_man": [
[
"supervisord_13",
"supervisord_16",
"supervisord_28",
"supervisord_44",
"supervisord_51",
"supervisord_72"
],
[
"supervisord_1",
"supervisord_2",
"supervisord_3"
]
]
} |
6432 | run supervisord in the foreground | supervisord -n | [
"supervisord_1",
"supervisord_12",
"supervisord_17",
"supervisord_29"
] | supervisord | supervisord | true | {
"token": [
"-n",
"|main|"
],
"oracle_man": [
[
"supervisord_12",
"supervisord_17",
"supervisord_29"
],
[
"supervisord_1",
"supervisord_2",
"supervisord_3"
]
]
} |
6438 | merge two (or more) pdfs | pdfjam {{path/to/file1.pdf}} {{path/to/file2.pdf}} --outfile {{path/to/output_file.pdf}} | [
"pdfjam_3"
] | pdfjam | pdfjam | true | {
"token": [
"--outfile",
"|main|"
],
"oracle_man": [
[],
[
"pdfjam_3",
"pdfjam_4",
"pdfjam_5"
]
]
} |
6439 | merge the first page of each file together | pdfjam {{files...}} 1 --outfile {{path/to/output_file.pdf}} | [
"pdfjam_0",
"pdfjam_3"
] | pdfjam | pdfjam | true | {
"token": [
"1",
"--outfile",
"|main|"
],
"oracle_man": [
[
"pdfjam_0"
],
[],
[
"pdfjam_3",
"pdfjam_4",
"pdfjam_5"
]
]
} |
6440 | merge subranges from two pdfs | pdfjam {{path/to/file1.pdf 3-5,1}} {{path/to/file2.pdf 4-6}} --outfile {{path/to/output_file.pdf}} | [
"pdfjam_3"
] | pdfjam | pdfjam | true | {
"token": [
"--outfile",
"|main|"
],
"oracle_man": [
[],
[
"pdfjam_3",
"pdfjam_4",
"pdfjam_5"
]
]
} |
6441 | sign an a4 page (adjust delta to height for other formats) with a scanned signature by overlaying them | pdfjam {{path/to/file.pdf}} {{path/to/signature}} --fitpaper true --outfile {{path/to/signed.pdf}} --nup "{{1x2}}" --delta "{{0 -842pt}}" | [
"pdfjam_3"
] | pdfjam | pdfjam | true | {
"token": [
"--fitpaper",
"true",
"--outfile",
"--nup",
"--delta",
"|main|"
],
"oracle_man": [
[],
[],
[],
[],
[],
[
"pdfjam_3",
"pdfjam_4",
"pdfjam_5"
]
]
} |
6442 | arrange the pages from the input file into a fancy 2x2 grid | pdfjam {{path/to/file.pdf}} --nup {{2x2}} --suffix {{4up}} --preamble '{{\usepackage{fancyhdr} \pagestyle{fancy}}}' | [
"pdfjam_3"
] | pdfjam | pdfjam | true | {
"token": [
"--nup",
"--suffix",
"--preamble",
"|main|"
],
"oracle_man": [
[],
[],
[],
[
"pdfjam_3",
"pdfjam_4",
"pdfjam_5"
]
]
} |
6443 | reverse the order of pages within each given file and concatenate them | pdfjam {{files...}} {{last-1}} --suffix {{reversed}} | [
"pdfjam_3"
] | pdfjam | pdfjam | true | {
"token": [
"--suffix",
"|main|"
],
"oracle_man": [
[],
[
"pdfjam_3",
"pdfjam_4",
"pdfjam_5"
]
]
} |
6448 | start a wizard to choose what kind of code (e.g. module, service, form, etc.) to generate | dcg | [
"dcg_4"
] | dcg | dcg | true | {
"token": [
"|main|"
],
"oracle_man": [
[
"dcg_4"
]
]
} |
6449 | directly specify the kind of code to generate | dcg {{service|plugin|theme|module|form}} | [
"dcg_4"
] | dcg | dcg | true | {
"token": [
"|main|"
],
"oracle_man": [
[
"dcg_4"
]
]
} |
6450 | generate the code in a specific directory | dcg --directory {{path/to/directory}} | [
"dcg_4"
] | dcg | dcg | true | {
"token": [
"--directory",
"|main|"
],
"oracle_man": [
[],
[
"dcg_4"
]
]
} |
6451 | list the stacks in the app | cdk ls | [
"cdk_10"
] | cdk | cdk | true | {
"token": [
"ls",
"|main|"
],
"oracle_man": [
[],
[
"cdk_10",
"cdk_11",
"cdk_12",
"cdk_13",
"cdk_14",
"cdk_15",
"cdk_16"
]
]
} |
6452 | synthesize and print the cloudformation template for the specified stack(s) | cdk synth {{stack_name}} | [
"cdk_10"
] | cdk | cdk | true | {
"token": [
"synth",
"|main|"
],
"oracle_man": [
[],
[
"cdk_10",
"cdk_11",
"cdk_12",
"cdk_13",
"cdk_14",
"cdk_15",
"cdk_16"
]
]
} |
6453 | deploy a spaceseparated list of stacks | cdk deploy {{stack_name}} | [
"cdk_10"
] | cdk | cdk | true | {
"token": [
"deploy",
"|main|"
],
"oracle_man": [
[],
[
"cdk_10",
"cdk_11",
"cdk_12",
"cdk_13",
"cdk_14",
"cdk_15",
"cdk_16"
]
]
} |
6454 | destroy a spaceseparated list of stacks | cdk destroy {{stack_name}} | [
"cdk_10"
] | cdk | cdk | true | {
"token": [
"destroy",
"|main|"
],
"oracle_man": [
[],
[
"cdk_10",
"cdk_11",
"cdk_12",
"cdk_13",
"cdk_14",
"cdk_15",
"cdk_16"
]
]
} |
6455 | compare the specified stack with the deployed stack or a local cloudformation template | cdk diff {{stack_name}} | [
"cdk_10"
] | cdk | cdk | true | {
"token": [
"diff",
"|main|"
],
"oracle_man": [
[],
[
"cdk_10",
"cdk_11",
"cdk_12",
"cdk_13",
"cdk_14",
"cdk_15",
"cdk_16"
]
]
} |
6456 | create a new cdk project in the current directory for a specified language | cdk init -l {{language_name}} | [
"cdk_2",
"cdk_10"
] | cdk | cdk | true | {
"token": [
"init",
"-l",
"|main|"
],
"oracle_man": [
[],
[
"cdk_2"
],
[
"cdk_10",
"cdk_11",
"cdk_12",
"cdk_13",
"cdk_14",
"cdk_15",
"cdk_16"
]
]
} |
6457 | open the cdk api reference in your browser | cdk doc | [
"cdk_10"
] | cdk | cdk | true | {
"token": [
"doc",
"|main|"
],
"oracle_man": [
[],
[
"cdk_10",
"cdk_11",
"cdk_12",
"cdk_13",
"cdk_14",
"cdk_15",
"cdk_16"
]
]
} |
6465 | view documentation for the original command | tldr clj | [
"clojure_1",
"clojure_2",
"clojure_3",
"clojure_6"
] | clojure | clojure | true | {
"token": [
"tldr",
"clj",
"|main|"
],
"oracle_man": [
[],
[
"clojure_1",
"clojure_2",
"clojure_6"
],
[
"clojure_3"
]
]
} |
6466 | open moe and create a backup file (file~) when saving edits | moe {{path/to/file}} | [
"moe_3"
] | moe | moe | true | {
"token": [
"|main|"
],
"oracle_man": [
[
"moe_3",
"moe_4",
"moe_5",
"moe_6",
"moe_7",
"moe_8",
"moe_9",
"moe_10",
"moe_11",
"moe_12",
"moe_13",
"moe_14",
"moe_15",
"moe_16",
"moe_17",
"moe_18",
"moe_19",
"moe_20",
"moe_21",
"moe_22",
"moe_23",
"moe_24",
"moe_25",
"moe_26",
"moe_27",
"moe_28",
"moe_29",
"moe_30",
"moe_31"
]
]
} |
6467 | open a file as readonly | moe --read-only {{path/to/file}} | [
"moe_3",
"moe_27"
] | moe | moe | true | {
"token": [
"--read-only",
"|main|"
],
"oracle_man": [
[
"moe_27"
],
[
"moe_3",
"moe_4",
"moe_5",
"moe_6",
"moe_7",
"moe_8",
"moe_9",
"moe_10",
"moe_11",
"moe_12",
"moe_13",
"moe_14",
"moe_15",
"moe_16",
"moe_17",
"moe_18",
"moe_19",
"moe_20",
"moe_21",
"moe_22",
"moe_23",
"moe_24",
"moe_25",
"moe_26",
"moe_27",
"moe_28",
"moe_29",
"moe_30",
"moe_31"
]
]
} |
6468 | edit a file without creating backups | moe --no-backup {{path/to/file}} | [
"moe_3",
"moe_7",
"moe_14"
] | moe | moe | true | {
"token": [
"--no-backup",
"|main|"
],
"oracle_man": [
[
"moe_7",
"moe_14"
],
[
"moe_3",
"moe_4",
"moe_5",
"moe_6",
"moe_7",
"moe_8",
"moe_9",
"moe_10",
"moe_11",
"moe_12",
"moe_13",
"moe_14",
"moe_15",
"moe_16",
"moe_17",
"moe_18",
"moe_19",
"moe_20",
"moe_21",
"moe_22",
"moe_23",
"moe_24",
"moe_25",
"moe_26",
"moe_27",
"moe_28",
"moe_29",
"moe_30",
"moe_31"
]
]
} |
6469 | edit a file ignoring case in searches | moe --ignore-case {{path/to/file}} | [
"moe_3",
"moe_17"
] | moe | moe | true | {
"token": [
"--ignore-case",
"|main|"
],
"oracle_man": [
[
"moe_17"
],
[
"moe_3",
"moe_4",
"moe_5",
"moe_6",
"moe_7",
"moe_8",
"moe_9",
"moe_10",
"moe_11",
"moe_12",
"moe_13",
"moe_14",
"moe_15",
"moe_16",
"moe_17",
"moe_18",
"moe_19",
"moe_20",
"moe_21",
"moe_22",
"moe_23",
"moe_24",
"moe_25",
"moe_26",
"moe_27",
"moe_28",
"moe_29",
"moe_30",
"moe_31"
]
]
} |
6470 | save and quit | Ctrl + X | [
"moe_3"
] | moe | moe | true | {
"token": [
"Ctrl",
"+",
"X",
"|main|"
],
"oracle_man": [
[],
[],
[],
[
"moe_3",
"moe_4",
"moe_5",
"moe_6",
"moe_7",
"moe_8",
"moe_9",
"moe_10",
"moe_11",
"moe_12",
"moe_13",
"moe_14",
"moe_15",
"moe_16",
"moe_17",
"moe_18",
"moe_19",
"moe_20",
"moe_21",
"moe_22",
"moe_23",
"moe_24",
"moe_25",
"moe_26",
"moe_27",
"moe_28",
"moe_29",
"moe_30",
"moe_31"
]
]
} |
6471 | start skim on all files in the specified directory | find {{path/to/directory}} -type f | sk | [
"sk_3",
"sk_4",
"sk_42",
"sk_44",
"sk_63",
"sk_76",
"sk_77",
"sk_82",
"sk_100",
"sk_105",
"sk_106",
"sk_115",
"sk_116"
] | sk | sk | true | {
"token": [
"find",
"-type",
"f",
"|main|"
],
"oracle_man": [
[],
[
"sk_4",
"sk_42",
"sk_44",
"sk_63",
"sk_76",
"sk_77",
"sk_82",
"sk_100",
"sk_105",
"sk_106",
"sk_115",
"sk_116"
],
[],
[
"sk_3"
]
]
} |
6472 | start skim for running processes | ps aux | sk | [
"sk_3"
] | sk | sk | true | {
"token": [
"ps",
"aux",
"|main|"
],
"oracle_man": [
[],
[],
[
"sk_3"
]
]
} |
6473 | start skim with a specified query | sk --query "{{query}}" | [
"sk_3",
"sk_72"
] | sk | sk | true | {
"token": [
"--query",
"|main|"
],
"oracle_man": [
[
"sk_72"
],
[
"sk_3"
]
]
} |
6474 | select multiple files with `shift + tab` and write to a file | find {{path/to/directory}} -type f | sk --multi > {{filename}} | [
"sk_3",
"sk_4",
"sk_21",
"sk_42",
"sk_44",
"sk_60",
"sk_63",
"sk_76",
"sk_77",
"sk_82",
"sk_84",
"sk_91",
"sk_100",
"sk_105",
"sk_106",
"sk_115",
"sk_116"
] | sk | sk | true | {
"token": [
"find",
"-type",
"f",
"--multi",
"|main|"
],
"oracle_man": [
[],
[
"sk_4",
"sk_42",
"sk_44",
"sk_63",
"sk_76",
"sk_77",
"sk_82",
"sk_100",
"sk_105",
"sk_106",
"sk_115",
"sk_116"
],
[],
[
"sk_21",
"sk_60",
"sk_84",
"sk_91"
],
[
"sk_3"
]
]
} |
6487 | show changed files which are not yet added for commit | git status | [
"git-status_2",
"git-status_3",
"git-status_85",
"git-status_86"
] | git-status | git-status | true | {
"token": [
"git",
"status",
"|main|"
],
"oracle_man": [
[
"git-status_2",
"git-status_86"
],
[
"git-status_2",
"git-status_85"
],
[
"git-status_3"
]
]
} |
6488 | give output in [s]hort format | git status -s | [
"git-status_1",
"git-status_2",
"git-status_3",
"git-status_4",
"git-status_6",
"git-status_17",
"git-status_19",
"git-status_85",
"git-status_86"
] | git-status | git-status | true | {
"token": [
"git",
"status",
"-s",
"|main|"
],
"oracle_man": [
[
"git-status_2",
"git-status_86"
],
[
"git-status_2",
"git-status_85"
],
[
"git-status_1",
"git-status_4",
"git-status_6",
"git-status_17",
"git-status_19",
"git-status_85"
],
[
"git-status_3"
]
]
} |
6489 | don't show untracked files in the output | git status --untracked-files=no | [
"git-status_2",
"git-status_3",
"git-status_85",
"git-status_86"
] | git-status | git-status | true | {
"token": [
"git",
"status",
"--untracked-files=no",
"|main|"
],
"oracle_man": [
[
"git-status_2",
"git-status_86"
],
[
"git-status_2",
"git-status_85"
],
[],
[
"git-status_3"
]
]
} |
6490 | show output in [s]hort format along with [b]ranch info | git status -sb | [
"git-status_2",
"git-status_3",
"git-status_5",
"git-status_29",
"git-status_56",
"git-status_65",
"git-status_85",
"git-status_86"
] | git-status | git-status | true | {
"token": [
"git",
"status",
"-sb",
"|main|"
],
"oracle_man": [
[
"git-status_2",
"git-status_86"
],
[
"git-status_2",
"git-status_85"
],
[
"git-status_5",
"git-status_29",
"git-status_56",
"git-status_65"
],
[
"git-status_3"
]
]
} |
6491 | print a quotation | fortune | [
"fortune_3"
] | fortune | fortune | true | {
"token": [
"|main|"
],
"oracle_man": [
[
"fortune_3",
"fortune_4",
"fortune_5",
"fortune_6",
"fortune_7",
"fortune_8",
"fortune_9",
"fortune_10",
"fortune_11",
"fortune_12",
"fortune_13",
"fortune_14",
"fortune_15",
"fortune_16",
"fortune_17",
"fortune_18",
"fortune_19",
"fortune_20",
"fortune_21",
"fortune_22",
"fortune_23",
"fortune_24",
"fortune_25",
"fortune_26",
"fortune_27",
"fortune_28",
"fortune_29",
"fortune_30",
"fortune_31",
"fortune_32",
"fortune_33",
"fortune_34"
]
]
} |
6492 | print an offensive quotation | fortune -o | [
"fortune_3"
] | fortune | fortune | true | {
"token": [
"-o",
"|main|"
],
"oracle_man": [
[],
[
"fortune_3",
"fortune_4",
"fortune_5",
"fortune_6",
"fortune_7",
"fortune_8",
"fortune_9",
"fortune_10",
"fortune_11",
"fortune_12",
"fortune_13",
"fortune_14",
"fortune_15",
"fortune_16",
"fortune_17",
"fortune_18",
"fortune_19",
"fortune_20",
"fortune_21",
"fortune_22",
"fortune_23",
"fortune_24",
"fortune_25",
"fortune_26",
"fortune_27",
"fortune_28",
"fortune_29",
"fortune_30",
"fortune_31",
"fortune_32",
"fortune_33",
"fortune_34"
]
]
} |
6493 | print a long quotation | fortune -l | [
"fortune_3",
"fortune_13"
] | fortune | fortune | true | {
"token": [
"-l",
"|main|"
],
"oracle_man": [
[
"fortune_13"
],
[
"fortune_3",
"fortune_4",
"fortune_5",
"fortune_6",
"fortune_7",
"fortune_8",
"fortune_9",
"fortune_10",
"fortune_11",
"fortune_12",
"fortune_13",
"fortune_14",
"fortune_15",
"fortune_16",
"fortune_17",
"fortune_18",
"fortune_19",
"fortune_20",
"fortune_21",
"fortune_22",
"fortune_23",
"fortune_24",
"fortune_25",
"fortune_26",
"fortune_27",
"fortune_28",
"fortune_29",
"fortune_30",
"fortune_31",
"fortune_32",
"fortune_33",
"fortune_34"
]
]
} |
6494 | print a short quotation | fortune -s | [
"fortune_3",
"fortune_20"
] | fortune | fortune | true | {
"token": [
"-s",
"|main|"
],
"oracle_man": [
[
"fortune_20"
],
[
"fortune_3",
"fortune_4",
"fortune_5",
"fortune_6",
"fortune_7",
"fortune_8",
"fortune_9",
"fortune_10",
"fortune_11",
"fortune_12",
"fortune_13",
"fortune_14",
"fortune_15",
"fortune_16",
"fortune_17",
"fortune_18",
"fortune_19",
"fortune_20",
"fortune_21",
"fortune_22",
"fortune_23",
"fortune_24",
"fortune_25",
"fortune_26",
"fortune_27",
"fortune_28",
"fortune_29",
"fortune_30",
"fortune_31",
"fortune_32",
"fortune_33",
"fortune_34"
]
]
} |
6495 | list the available quotation database files | fortune -f | [
"fortune_3",
"fortune_11",
"fortune_26",
"fortune_27",
"fortune_29",
"fortune_30",
"fortune_32",
"fortune_34"
] | fortune | fortune | true | {
"token": [
"-f",
"|main|"
],
"oracle_man": [
[
"fortune_11",
"fortune_26",
"fortune_27",
"fortune_29",
"fortune_30",
"fortune_32",
"fortune_34"
],
[
"fortune_3",
"fortune_4",
"fortune_5",
"fortune_6",
"fortune_7",
"fortune_8",
"fortune_9",
"fortune_10",
"fortune_11",
"fortune_12",
"fortune_13",
"fortune_14",
"fortune_15",
"fortune_16",
"fortune_17",
"fortune_18",
"fortune_19",
"fortune_20",
"fortune_21",
"fortune_22",
"fortune_23",
"fortune_24",
"fortune_25",
"fortune_26",
"fortune_27",
"fortune_28",
"fortune_29",
"fortune_30",
"fortune_31",
"fortune_32",
"fortune_33",
"fortune_34"
]
]
} |
6496 | print a quotation from one of the database files listed by `fortune f` | fortune {{filename}} | [
"fortune_3"
] | fortune | fortune | true | {
"token": [
"|main|"
],
"oracle_man": [
[
"fortune_3",
"fortune_4",
"fortune_5",
"fortune_6",
"fortune_7",
"fortune_8",
"fortune_9",
"fortune_10",
"fortune_11",
"fortune_12",
"fortune_13",
"fortune_14",
"fortune_15",
"fortune_16",
"fortune_17",
"fortune_18",
"fortune_19",
"fortune_20",
"fortune_21",
"fortune_22",
"fortune_23",
"fortune_24",
"fortune_25",
"fortune_26",
"fortune_27",
"fortune_28",
"fortune_29",
"fortune_30",
"fortune_31",
"fortune_32",
"fortune_33",
"fortune_34"
]
]
} |
6497 | list all supported import formats | assimp listext | [
"assimp_3",
"assimp_7"
] | assimp | assimp | true | {
"token": [
"listext",
"|main|"
],
"oracle_man": [
[
"assimp_7"
],
[
"assimp_3"
]
]
} |
6498 | list all supported export formats | assimp listexport | [
"assimp_3"
] | assimp | assimp | true | {
"token": [
"listexport",
"|main|"
],
"oracle_man": [
[],
[
"assimp_3"
]
]
} |
6499 | convert a file to one of the supported output formats, using the default parameters | assimp export {{input_file.stl}} {{output_file.obj}} | [
"assimp_3"
] | assimp | assimp | true | {
"token": [
"export",
"|main|"
],
"oracle_man": [
[],
[
"assimp_3"
]
]
} |
6500 | convert a file using custom parameters (the dox_cmd.h file in assimp's source code lists available parameters) | assimp export {{input_file.stl}} {{output_file.obj}} {{parameters}} | [
"assimp_3"
] | assimp | assimp | true | {
"token": [
"export",
"|main|"
],
"oracle_man": [
[],
[
"assimp_3"
]
]
} |
6501 | display a summary of a 3d file's contents | assimp info {{path/to/file}} | [
"assimp_3",
"assimp_5"
] | assimp | assimp | true | {
"token": [
"info",
"|main|"
],
"oracle_man": [
[
"assimp_5"
],
[
"assimp_3"
]
]
} |
6502 | list all supported subcommands ("verbs") | assimp help | [
"assimp_3"
] | assimp | assimp | true | {
"token": [
"help",
"|main|"
],
"oracle_man": [
[],
[
"assimp_3"
]
]
} |
6503 | get help on a specific subcommand (e.g. the parameters specific to it) | assimp {{subcommand}} --help | [
"assimp_3",
"assimp_4"
] | assimp | assimp | true | {
"token": [
"--help",
"|main|"
],
"oracle_man": [
[
"assimp_4"
],
[
"assimp_3"
]
]
} |
6504 | compile a nsis script | makensis {{path/to/file.nsi}} | [
"makensis_3"
] | makensis | makensis | true | {
"token": [
"|main|"
],
"oracle_man": [
[
"makensis_3",
"makensis_4",
"makensis_5"
]
]
} |
6505 | compile a nsis script in strict mode (treat warnings as errors) | makensis -WX {{path/to/file.nsi}} | [
"makensis_2",
"makensis_3",
"makensis_8"
] | makensis | makensis | true | {
"token": [
"-WX",
"|main|"
],
"oracle_man": [
[
"makensis_2",
"makensis_8"
],
[
"makensis_3",
"makensis_4",
"makensis_5"
]
]
} |
6506 | print help for a specific command | makensis -CMDHELP {{command}} | [
"makensis_2",
"makensis_3",
"makensis_18"
] | makensis | makensis | true | {
"token": [
"-CMDHELP",
"|main|"
],
"oracle_man": [
[
"makensis_2",
"makensis_18"
],
[
"makensis_3",
"makensis_4",
"makensis_5"
]
]
} |
6507 | find all instances of a command | where {{command}} | [
"where_3"
] | where | where | true | {
"token": [
"|main|"
],
"oracle_man": [
[
"where_3",
"where_4",
"where_5",
"where_6",
"where_7",
"where_8"
]
]
} |
6508 | check the git version | git --version | [
"git_2",
"git_3",
"git_7",
"git_8"
] | git | git | true | {
"token": [
"--version",
"|main|"
],
"oracle_man": [
[
"git_2",
"git_7",
"git_8"
],
[
"git_3",
"git_4",
"git_5",
"git_6"
]
]
} |
6509 | show general help | git --help | [
"git_2",
"git_3",
"git_8",
"git_9",
"git_10"
] | git | git | true | {
"token": [
"--help",
"|main|"
],
"oracle_man": [
[
"git_2",
"git_8",
"git_9",
"git_10"
],
[
"git_3",
"git_4",
"git_5",
"git_6"
]
]
} |
6510 | show help on a git subcommand (like `commit`, `log`, etc.) | git help {{subcommand}} | [
"git_3"
] | git | git | true | {
"token": [
"help",
"|main|"
],
"oracle_man": [
[],
[
"git_3",
"git_4",
"git_5",
"git_6"
]
]
} |
6511 | execute a git subcommand | git {{subcommand}} | [
"git_3"
] | git | git | true | {
"token": [
"|main|"
],
"oracle_man": [
[
"git_3",
"git_4",
"git_5",
"git_6"
]
]
} |
6512 | execute a git subcommand on a custom repository root path | git -C {{path/to/repo}} {{subcommand}} | [
"git_2",
"git_3",
"git_11",
"git_12",
"git_13",
"git_27"
] | git | git | true | {
"token": [
"-C",
"|main|"
],
"oracle_man": [
[
"git_2",
"git_11",
"git_12",
"git_13",
"git_27"
],
[
"git_3",
"git_4",
"git_5",
"git_6"
]
]
} |
6513 | execute a git subcommand with a given configuration set | git -c '{{config.key}}={{value}}' {{subcommand}} | [
"git_2",
"git_3",
"git_14",
"git_15",
"git_16",
"git_38",
"git_47",
"git_48",
"git_49",
"git_50",
"git_51",
"git_52",
"git_76",
"git_85",
"git_100",
"git_108",
"git_114",
"git_115",
"git_116",
"git_132",
"git_133",
"git_134",
"git_150",
"git_151",
"git_157",
"git_185",
"git_186",
"git_187",
"git_188",
"git_189",
"git_190",
"git_191",
"git_192",
"git_228",
"git_262",
"git_265",
"git_280",
"git_283",
"git_284",
"git_288",
"git_325",
"git_333"
] | git | git | true | {
"token": [
"-c",
"|main|"
],
"oracle_man": [
[
"git_2",
"git_14",
"git_15",
"git_16",
"git_38",
"git_47",
"git_48",
"git_49",
"git_50",
"git_51",
"git_52",
"git_76",
"git_85",
"git_100",
"git_108",
"git_114",
"git_115",
"git_116",
"git_132",
"git_133",
"git_134",
"git_150",
"git_151",
"git_157",
"git_185",
"git_186",
"git_187",
"git_188",
"git_189",
"git_190",
"git_191",
"git_192",
"git_228",
"git_262",
"git_265",
"git_280",
"git_283",
"git_284",
"git_288",
"git_325",
"git_333"
],
[
"git_3",
"git_4",
"git_5",
"git_6"
]
]
} |
6525 | gzip several files at once, using all cores | parallel gzip ::: {{file1}} {{file2}} {{file3}} | [
"parallel_7",
"parallel_698",
"parallel_1114"
] | parallel | parallel | true | {
"token": [
"gzip",
":::",
"|main|"
],
"oracle_man": [
[
"parallel_698",
"parallel_1114"
],
[],
[
"parallel_7",
"parallel_8",
"parallel_9",
"parallel_10",
"parallel_11",
"parallel_12",
"parallel_13",
"parallel_14",
"parallel_15",
"parallel_16",
"parallel_17",
"parallel_18",
"parallel_19",
"parallel_20",
"parallel_21",
"parallel_22",
"parallel_23",
"parallel_24"
]
]
} |
6526 | read arguments from stdin, run 4 jobs at once | ls *.txt | parallel -j4 gzip | [
"parallel_7",
"parallel_277",
"parallel_698",
"parallel_704",
"parallel_706",
"parallel_720",
"parallel_732",
"parallel_734",
"parallel_737",
"parallel_1057",
"parallel_1114",
"parallel_1228",
"parallel_1230",
"parallel_1232",
"parallel_1238",
"parallel_1240"
] | parallel | parallel | true | {
"token": [
"ls",
"*.txt",
"-j4",
"gzip",
"|main|"
],
"oracle_man": [
[
"parallel_704",
"parallel_706",
"parallel_720",
"parallel_732",
"parallel_734",
"parallel_737",
"parallel_1057",
"parallel_1228",
"parallel_1230",
"parallel_1232",
"parallel_1238",
"parallel_1240"
],
[],
[
"parallel_277"
],
[
"parallel_698",
"parallel_1114"
],
[
"parallel_7",
"parallel_8",
"parallel_9",
"parallel_10",
"parallel_11",
"parallel_12",
"parallel_13",
"parallel_14",
"parallel_15",
"parallel_16",
"parallel_17",
"parallel_18",
"parallel_19",
"parallel_20",
"parallel_21",
"parallel_22",
"parallel_23",
"parallel_24"
]
]
} |
6527 | convert jpg images to png using replacement strings | parallel convert {} {.}.png ::: *.jpg | [
"parallel_7",
"parallel_263",
"parallel_699",
"parallel_718"
] | parallel | parallel | true | {
"token": [
"convert",
"{}",
"{.}.png",
":::",
"*.jpg",
"|main|"
],
"oracle_man": [
[
"parallel_263",
"parallel_699",
"parallel_718"
],
[],
[],
[],
[],
[
"parallel_7",
"parallel_8",
"parallel_9",
"parallel_10",
"parallel_11",
"parallel_12",
"parallel_13",
"parallel_14",
"parallel_15",
"parallel_16",
"parallel_17",
"parallel_18",
"parallel_19",
"parallel_20",
"parallel_21",
"parallel_22",
"parallel_23",
"parallel_24"
]
]
} |
6528 | parallel xargs, cram as many args as possible onto one command | {{args}} | parallel -X {{command}} | [
"parallel_7",
"parallel_285",
"parallel_289",
"parallel_315",
"parallel_331",
"parallel_336",
"parallel_362",
"parallel_496",
"parallel_583",
"parallel_679",
"parallel_681",
"parallel_682",
"parallel_688",
"parallel_715",
"parallel_871",
"parallel_872",
"parallel_1049",
"parallel_1115",
"parallel_1118",
"parallel_1148"
] | parallel | parallel | true | {
"token": [
"-X",
"|main|"
],
"oracle_man": [
[
"parallel_285",
"parallel_289",
"parallel_315",
"parallel_331",
"parallel_336",
"parallel_362",
"parallel_496",
"parallel_583",
"parallel_679",
"parallel_681",
"parallel_682",
"parallel_688",
"parallel_715",
"parallel_871",
"parallel_872",
"parallel_1049",
"parallel_1115",
"parallel_1118",
"parallel_1148"
],
[
"parallel_7",
"parallel_8",
"parallel_9",
"parallel_10",
"parallel_11",
"parallel_12",
"parallel_13",
"parallel_14",
"parallel_15",
"parallel_16",
"parallel_17",
"parallel_18",
"parallel_19",
"parallel_20",
"parallel_21",
"parallel_22",
"parallel_23",
"parallel_24"
]
]
} |
6529 | break stdin into ~1m blocks, feed each block to stdin of new command | cat {{big_file.txt}} | parallel --pipe --block 1M {{command}} | [
"parallel_7",
"parallel_125",
"parallel_134",
"parallel_136",
"parallel_138",
"parallel_139",
"parallel_141",
"parallel_142",
"parallel_143",
"parallel_144",
"parallel_145",
"parallel_164",
"parallel_171",
"parallel_190",
"parallel_192",
"parallel_205",
"parallel_210",
"parallel_214",
"parallel_218",
"parallel_220",
"parallel_222",
"parallel_224",
"parallel_250",
"parallel_261",
"parallel_264",
"parallel_266",
"parallel_279",
"parallel_281",
"parallel_285",
"parallel_286",
"parallel_289",
"parallel_336",
"parallel_338",
"parallel_346",
"parallel_347",
"parallel_352",
"parallel_353",
"parallel_354",
"parallel_355",
"parallel_356",
"parallel_394",
"parallel_405",
"parallel_409",
"parallel_475",
"parallel_477",
"parallel_522",
"parallel_534",
"parallel_540",
"parallel_542",
"parallel_544",
"parallel_613",
"parallel_614",
"parallel_616",
"parallel_618",
"parallel_739",
"parallel_743",
"parallel_759",
"parallel_803",
"parallel_805",
"parallel_823",
"parallel_825",
"parallel_827",
"parallel_831",
"parallel_833",
"parallel_836",
"parallel_853",
"parallel_874",
"parallel_879",
"parallel_881",
"parallel_909",
"parallel_944",
"parallel_945",
"parallel_947",
"parallel_949",
"parallel_952",
"parallel_953",
"parallel_955",
"parallel_957",
"parallel_1013",
"parallel_1102",
"parallel_1109",
"parallel_1110",
"parallel_1112",
"parallel_1115",
"parallel_1117",
"parallel_1118",
"parallel_1119",
"parallel_1123",
"parallel_1124",
"parallel_1126",
"parallel_1128",
"parallel_1148",
"parallel_1181",
"parallel_1183",
"parallel_1184",
"parallel_1188",
"parallel_1189",
"parallel_1284",
"parallel_1286"
] | parallel | parallel | true | {
"token": [
"cat",
"--pipe",
"--block",
"1M",
"|main|"
],
"oracle_man": [
[
"parallel_220",
"parallel_222",
"parallel_224",
"parallel_264",
"parallel_266",
"parallel_534",
"parallel_540",
"parallel_739",
"parallel_743",
"parallel_759",
"parallel_803",
"parallel_805",
"parallel_823",
"parallel_825",
"parallel_827",
"parallel_831",
"parallel_833",
"parallel_836",
"parallel_853",
"parallel_909",
"parallel_952",
"parallel_1013",
"parallel_1102",
"parallel_1112",
"parallel_1115",
"parallel_1126",
"parallel_1128",
"parallel_1148",
"parallel_1284",
"parallel_1286"
],
[
"parallel_125",
"parallel_138",
"parallel_139",
"parallel_141",
"parallel_142",
"parallel_144",
"parallel_145",
"parallel_164",
"parallel_171",
"parallel_190",
"parallel_192",
"parallel_205",
"parallel_210",
"parallel_214",
"parallel_218",
"parallel_220",
"parallel_222",
"parallel_224",
"parallel_250",
"parallel_261",
"parallel_279",
"parallel_281",
"parallel_285",
"parallel_286",
"parallel_289",
"parallel_336",
"parallel_338",
"parallel_346",
"parallel_352",
"parallel_353",
"parallel_354",
"parallel_355",
"parallel_356",
"parallel_394",
"parallel_405",
"parallel_409",
"parallel_475",
"parallel_477",
"parallel_522",
"parallel_540",
"parallel_542",
"parallel_544",
"parallel_613",
"parallel_614",
"parallel_616",
"parallel_618",
"parallel_874",
"parallel_879",
"parallel_881",
"parallel_944",
"parallel_947",
"parallel_949",
"parallel_952",
"parallel_955",
"parallel_957",
"parallel_1102",
"parallel_1109",
"parallel_1110",
"parallel_1112",
"parallel_1115",
"parallel_1117",
"parallel_1118",
"parallel_1119",
"parallel_1123",
"parallel_1126",
"parallel_1128",
"parallel_1181",
"parallel_1183",
"parallel_1184",
"parallel_1188",
"parallel_1189"
],
[
"parallel_134",
"parallel_136",
"parallel_139",
"parallel_142",
"parallel_143",
"parallel_338",
"parallel_347",
"parallel_879",
"parallel_881",
"parallel_944",
"parallel_947",
"parallel_949",
"parallel_953",
"parallel_955",
"parallel_957",
"parallel_1109",
"parallel_1118",
"parallel_1124",
"parallel_1184"
],
[
"parallel_945"
],
[
"parallel_7",
"parallel_8",
"parallel_9",
"parallel_10",
"parallel_11",
"parallel_12",
"parallel_13",
"parallel_14",
"parallel_15",
"parallel_16",
"parallel_17",
"parallel_18",
"parallel_19",
"parallel_20",
"parallel_21",
"parallel_22",
"parallel_23",
"parallel_24"
]
]
} |
6530 | run on multiple machines via ssh | parallel -S {{machine1}},{{machine2}} {{command}} ::: {{arg1}} {{arg2}} | [
"parallel_7",
"parallel_255",
"parallel_466",
"parallel_530",
"parallel_570",
"parallel_674",
"parallel_752",
"parallel_902",
"parallel_974",
"parallel_1000",
"parallel_1001",
"parallel_1003",
"parallel_1005",
"parallel_1007",
"parallel_1009",
"parallel_1013",
"parallel_1016",
"parallel_1019",
"parallel_1023",
"parallel_1028",
"parallel_1035",
"parallel_1037",
"parallel_1041",
"parallel_1162",
"parallel_1163",
"parallel_1166",
"parallel_1168",
"parallel_1173",
"parallel_1174",
"parallel_1284",
"parallel_1286",
"parallel_1294",
"parallel_1301"
] | parallel | parallel | true | {
"token": [
"-S",
":::",
"|main|"
],
"oracle_man": [
[
"parallel_255",
"parallel_466",
"parallel_530",
"parallel_570",
"parallel_674",
"parallel_752",
"parallel_902",
"parallel_974",
"parallel_1000",
"parallel_1001",
"parallel_1003",
"parallel_1005",
"parallel_1007",
"parallel_1009",
"parallel_1013",
"parallel_1016",
"parallel_1019",
"parallel_1023",
"parallel_1028",
"parallel_1035",
"parallel_1037",
"parallel_1041",
"parallel_1162",
"parallel_1163",
"parallel_1166",
"parallel_1168",
"parallel_1173",
"parallel_1174",
"parallel_1284",
"parallel_1286",
"parallel_1294",
"parallel_1301"
],
[],
[
"parallel_7",
"parallel_8",
"parallel_9",
"parallel_10",
"parallel_11",
"parallel_12",
"parallel_13",
"parallel_14",
"parallel_15",
"parallel_16",
"parallel_17",
"parallel_18",
"parallel_19",
"parallel_20",
"parallel_21",
"parallel_22",
"parallel_23",
"parallel_24"
]
]
} |
6531 | convert to a tabdelimited file (tsv) | csvformat -T {{data.csv}} | [
"csvformat_2",
"csvformat_3",
"csvformat_6"
] | csvformat | csvformat | true | {
"token": [
"-T",
"|main|"
],
"oracle_man": [
[
"csvformat_3",
"csvformat_6"
],
[
"csvformat_2",
"csvformat_3",
"csvformat_4",
"csvformat_5",
"csvformat_6",
"csvformat_7"
]
]
} |
6532 | convert delimiters to a custom character | csvformat -D "{{custom_character}}" {{data.csv}} | [
"csvformat_2",
"csvformat_3",
"csvformat_6",
"csvformat_9"
] | csvformat | csvformat | true | {
"token": [
"-D",
"|main|"
],
"oracle_man": [
[
"csvformat_3",
"csvformat_6",
"csvformat_9"
],
[
"csvformat_2",
"csvformat_3",
"csvformat_4",
"csvformat_5",
"csvformat_6",
"csvformat_7"
]
]
} |
6533 | convert line endings to carriage return (^m) + line feed | csvformat -M "{{\r\n}}" {{data.csv}} | [
"csvformat_2",
"csvformat_3",
"csvformat_6",
"csvformat_11"
] | csvformat | csvformat | true | {
"token": [
"-M",
"|main|"
],
"oracle_man": [
[
"csvformat_3",
"csvformat_6",
"csvformat_11"
],
[
"csvformat_2",
"csvformat_3",
"csvformat_4",
"csvformat_5",
"csvformat_6",
"csvformat_7"
]
]
} |
6534 | minimize use of quote characters | csvformat -U 0 {{data.csv}} | [
"csvformat_2",
"csvformat_3",
"csvformat_6",
"csvformat_13"
] | csvformat | csvformat | true | {
"token": [
"-U",
"0",
"|main|"
],
"oracle_man": [
[
"csvformat_3",
"csvformat_6",
"csvformat_13"
],
[],
[
"csvformat_2",
"csvformat_3",
"csvformat_4",
"csvformat_5",
"csvformat_6",
"csvformat_7"
]
]
} |
6535 | maximize use of quote characters | csvformat -U 1 {{data.csv}} | [
"csvformat_0",
"csvformat_2",
"csvformat_3",
"csvformat_6",
"csvformat_13"
] | csvformat | csvformat | true | {
"token": [
"-U",
"1",
"|main|"
],
"oracle_man": [
[
"csvformat_3",
"csvformat_6",
"csvformat_13"
],
[
"csvformat_0"
],
[
"csvformat_2",
"csvformat_3",
"csvformat_4",
"csvformat_5",
"csvformat_6",
"csvformat_7"
]
]
} |
6536 | apply a patch file | git am {{path/to/file.patch}} | [
"git-am_2",
"git-am_3"
] | git-am | git-am | true | {
"token": [
"git",
"am",
"|main|"
],
"oracle_man": [
[
"git-am_2"
],
[
"git-am_2"
],
[
"git-am_3"
]
]
} |
6537 | abort the process of applying a patch file | git am --abort | [
"git-am_2",
"git-am_3",
"git-am_29"
] | git-am | git-am | true | {
"token": [
"git",
"am",
"--abort",
"|main|"
],
"oracle_man": [
[
"git-am_2"
],
[
"git-am_2"
],
[
"git-am_2",
"git-am_29"
],
[
"git-am_3"
]
]
} |
6538 | apply as much of a patch file as possible, saving failed hunks to reject files | git am --reject {{path/to/file.patch}} | [
"git-am_2",
"git-am_3",
"git-am_20"
] | git-am | git-am | true | {
"token": [
"git",
"am",
"--reject",
"|main|"
],
"oracle_man": [
[
"git-am_2"
],
[
"git-am_2"
],
[
"git-am_2",
"git-am_20"
],
[
"git-am_3"
]
]
} |
6547 | show information about the latest commit (hash, message, changes, and other metadata) | git show | [
"git-show_2",
"git-show_3",
"git-show_128",
"git-show_129",
"git-show_130",
"git-show_131",
"git-show_132",
"git-show_133",
"git-show_156",
"git-show_157",
"git-show_159",
"git-show_266",
"git-show_343",
"git-show_344",
"git-show_345",
"git-show_346",
"git-show_347"
] | git-show | git-show | true | {
"token": [
"git",
"show",
"|main|"
],
"oracle_man": [
[
"git-show_2",
"git-show_156",
"git-show_157",
"git-show_159",
"git-show_266",
"git-show_343",
"git-show_344",
"git-show_345",
"git-show_346",
"git-show_347"
],
[
"git-show_2",
"git-show_128",
"git-show_129",
"git-show_130",
"git-show_131",
"git-show_132",
"git-show_133",
"git-show_343",
"git-show_344",
"git-show_345",
"git-show_346",
"git-show_347"
],
[
"git-show_3",
"git-show_4",
"git-show_5",
"git-show_6",
"git-show_7",
"git-show_8",
"git-show_9"
]
]
} |
6548 | show information about a given commit | git show {{commit}} | [
"git-show_2",
"git-show_3",
"git-show_128",
"git-show_129",
"git-show_130",
"git-show_131",
"git-show_132",
"git-show_133",
"git-show_156",
"git-show_157",
"git-show_159",
"git-show_266",
"git-show_343",
"git-show_344",
"git-show_345",
"git-show_346",
"git-show_347"
] | git-show | git-show | true | {
"token": [
"git",
"show",
"|main|"
],
"oracle_man": [
[
"git-show_2",
"git-show_156",
"git-show_157",
"git-show_159",
"git-show_266",
"git-show_343",
"git-show_344",
"git-show_345",
"git-show_346",
"git-show_347"
],
[
"git-show_2",
"git-show_128",
"git-show_129",
"git-show_130",
"git-show_131",
"git-show_132",
"git-show_133",
"git-show_343",
"git-show_344",
"git-show_345",
"git-show_346",
"git-show_347"
],
[
"git-show_3",
"git-show_4",
"git-show_5",
"git-show_6",
"git-show_7",
"git-show_8",
"git-show_9"
]
]
} |
6549 | show information about the commit associated with a given tag | git show {{tag}} | [
"git-show_2",
"git-show_3",
"git-show_128",
"git-show_129",
"git-show_130",
"git-show_131",
"git-show_132",
"git-show_133",
"git-show_156",
"git-show_157",
"git-show_159",
"git-show_266",
"git-show_343",
"git-show_344",
"git-show_345",
"git-show_346",
"git-show_347"
] | git-show | git-show | true | {
"token": [
"git",
"show",
"|main|"
],
"oracle_man": [
[
"git-show_2",
"git-show_156",
"git-show_157",
"git-show_159",
"git-show_266",
"git-show_343",
"git-show_344",
"git-show_345",
"git-show_346",
"git-show_347"
],
[
"git-show_2",
"git-show_128",
"git-show_129",
"git-show_130",
"git-show_131",
"git-show_132",
"git-show_133",
"git-show_343",
"git-show_344",
"git-show_345",
"git-show_346",
"git-show_347"
],
[
"git-show_3",
"git-show_4",
"git-show_5",
"git-show_6",
"git-show_7",
"git-show_8",
"git-show_9"
]
]
} |
6550 | show information about the 3rd commit from the head of a branch | git show {{branch}}~{{3}} | [
"git-show_2",
"git-show_3",
"git-show_128",
"git-show_129",
"git-show_130",
"git-show_131",
"git-show_132",
"git-show_133",
"git-show_156",
"git-show_157",
"git-show_159",
"git-show_266",
"git-show_343",
"git-show_344",
"git-show_345",
"git-show_346",
"git-show_347"
] | git-show | git-show | true | {
"token": [
"git",
"show",
"|main|"
],
"oracle_man": [
[
"git-show_2",
"git-show_156",
"git-show_157",
"git-show_159",
"git-show_266",
"git-show_343",
"git-show_344",
"git-show_345",
"git-show_346",
"git-show_347"
],
[
"git-show_2",
"git-show_128",
"git-show_129",
"git-show_130",
"git-show_131",
"git-show_132",
"git-show_133",
"git-show_343",
"git-show_344",
"git-show_345",
"git-show_346",
"git-show_347"
],
[
"git-show_3",
"git-show_4",
"git-show_5",
"git-show_6",
"git-show_7",
"git-show_8",
"git-show_9"
]
]
} |
6551 | show a commit's message in a single line, suppressing the diff output | git show --oneline -s {{commit}} | [
"git-show_1",
"git-show_2",
"git-show_3",
"git-show_16",
"git-show_17",
"git-show_21",
"git-show_26",
"git-show_27",
"git-show_74",
"git-show_88",
"git-show_90",
"git-show_102",
"git-show_104",
"git-show_117",
"git-show_120",
"git-show_128",
"git-show_129",
"git-show_130",
"git-show_131",
"git-show_132",
"git-show_133",
"git-show_141",
"git-show_142",
"git-show_156",
"git-show_157",
"git-show_159",
"git-show_162",
"git-show_191",
"git-show_192",
"git-show_193",
"git-show_194",
"git-show_195",
"git-show_205",
"git-show_206",
"git-show_211",
"git-show_212",
"git-show_225",
"git-show_226",
"git-show_227",
"git-show_266",
"git-show_280",
"git-show_285",
"git-show_286",
"git-show_287",
"git-show_295",
"git-show_296",
"git-show_302",
"git-show_318",
"git-show_321",
"git-show_343",
"git-show_344",
"git-show_345",
"git-show_346",
"git-show_347"
] | git-show | git-show | true | {
"token": [
"git",
"show",
"--oneline",
"-s",
"|main|"
],
"oracle_man": [
[
"git-show_2",
"git-show_156",
"git-show_157",
"git-show_159",
"git-show_266",
"git-show_343",
"git-show_344",
"git-show_345",
"git-show_346",
"git-show_347"
],
[
"git-show_2",
"git-show_128",
"git-show_129",
"git-show_130",
"git-show_131",
"git-show_132",
"git-show_133",
"git-show_343",
"git-show_344",
"git-show_345",
"git-show_346",
"git-show_347"
],
[
"git-show_16",
"git-show_17",
"git-show_21"
],
[
"git-show_1",
"git-show_26",
"git-show_27",
"git-show_74",
"git-show_88",
"git-show_90",
"git-show_102",
"git-show_104",
"git-show_117",
"git-show_120",
"git-show_141",
"git-show_142",
"git-show_162",
"git-show_191",
"git-show_192",
"git-show_193",
"git-show_194",
"git-show_195",
"git-show_205",
"git-show_206",
"git-show_211",
"git-show_212",
"git-show_225",
"git-show_226",
"git-show_227",
"git-show_280",
"git-show_285",
"git-show_286",
"git-show_287",
"git-show_295",
"git-show_296",
"git-show_302",
"git-show_318",
"git-show_321",
"git-show_345"
],
[
"git-show_3",
"git-show_4",
"git-show_5",
"git-show_6",
"git-show_7",
"git-show_8",
"git-show_9"
]
]
} |
6552 | show only statistics (added/removed characters) about the changed files | git show --stat {{commit}} | [
"git-show_2",
"git-show_3",
"git-show_128",
"git-show_129",
"git-show_130",
"git-show_131",
"git-show_132",
"git-show_133",
"git-show_156",
"git-show_157",
"git-show_159",
"git-show_191",
"git-show_192",
"git-show_193",
"git-show_194",
"git-show_195",
"git-show_206",
"git-show_266",
"git-show_343",
"git-show_344",
"git-show_345",
"git-show_346",
"git-show_347"
] | git-show | git-show | true | {
"token": [
"git",
"show",
"--stat",
"|main|"
],
"oracle_man": [
[
"git-show_2",
"git-show_156",
"git-show_157",
"git-show_159",
"git-show_266",
"git-show_343",
"git-show_344",
"git-show_345",
"git-show_346",
"git-show_347"
],
[
"git-show_2",
"git-show_128",
"git-show_129",
"git-show_130",
"git-show_131",
"git-show_132",
"git-show_133",
"git-show_343",
"git-show_344",
"git-show_345",
"git-show_346",
"git-show_347"
],
[
"git-show_191",
"git-show_192",
"git-show_193",
"git-show_194",
"git-show_195",
"git-show_206"
],
[
"git-show_3",
"git-show_4",
"git-show_5",
"git-show_6",
"git-show_7",
"git-show_8",
"git-show_9"
]
]
} |
6553 | show only the list of added, renamed or deleted files | git show --summary {{commit}} | [
"git-show_2",
"git-show_3",
"git-show_128",
"git-show_129",
"git-show_130",
"git-show_131",
"git-show_132",
"git-show_133",
"git-show_156",
"git-show_157",
"git-show_159",
"git-show_205",
"git-show_266",
"git-show_343",
"git-show_344",
"git-show_345",
"git-show_346",
"git-show_347"
] | git-show | git-show | true | {
"token": [
"git",
"show",
"--summary",
"|main|"
],
"oracle_man": [
[
"git-show_2",
"git-show_156",
"git-show_157",
"git-show_159",
"git-show_266",
"git-show_343",
"git-show_344",
"git-show_345",
"git-show_346",
"git-show_347"
],
[
"git-show_2",
"git-show_128",
"git-show_129",
"git-show_130",
"git-show_131",
"git-show_132",
"git-show_133",
"git-show_343",
"git-show_344",
"git-show_345",
"git-show_346",
"git-show_347"
],
[
"git-show_205"
],
[
"git-show_3",
"git-show_4",
"git-show_5",
"git-show_6",
"git-show_7",
"git-show_8",
"git-show_9"
]
]
} |
6554 | show the contents of a file as it was at a given revision (e.g. branch, tag or commit) | git show {{revision}}:{{path/to/file}} | [
"git-show_2",
"git-show_3",
"git-show_128",
"git-show_129",
"git-show_130",
"git-show_131",
"git-show_132",
"git-show_133",
"git-show_156",
"git-show_157",
"git-show_159",
"git-show_266",
"git-show_343",
"git-show_344",
"git-show_345",
"git-show_346",
"git-show_347"
] | git-show | git-show | true | {
"token": [
"git",
"show",
"|main|"
],
"oracle_man": [
[
"git-show_2",
"git-show_156",
"git-show_157",
"git-show_159",
"git-show_266",
"git-show_343",
"git-show_344",
"git-show_345",
"git-show_346",
"git-show_347"
],
[
"git-show_2",
"git-show_128",
"git-show_129",
"git-show_130",
"git-show_131",
"git-show_132",
"git-show_133",
"git-show_343",
"git-show_344",
"git-show_345",
"git-show_346",
"git-show_347"
],
[
"git-show_3",
"git-show_4",
"git-show_5",
"git-show_6",
"git-show_7",
"git-show_8",
"git-show_9"
]
]
} |
6569 | start the mysql database server | mysqld | [
"mysqld_5"
] | mysqld | mysqld | true | {
"token": [
"|main|"
],
"oracle_man": [
[
"mysqld_5",
"mysqld_6",
"mysqld_7",
"mysqld_8",
"mysqld_9",
"mysqld_10",
"mysqld_11",
"mysqld_12",
"mysqld_13",
"mysqld_14",
"mysqld_15",
"mysqld_16",
"mysqld_17",
"mysqld_18",
"mysqld_19",
"mysqld_20",
"mysqld_21",
"mysqld_22",
"mysqld_23",
"mysqld_24",
"mysqld_25",
"mysqld_26",
"mysqld_27",
"mysqld_28",
"mysqld_29",
"mysqld_30",
"mysqld_31",
"mysqld_32",
"mysqld_33",
"mysqld_34",
"mysqld_35",
"mysqld_36",
"mysqld_37",
"mysqld_38",
"mysqld_39",
"mysqld_40",
"mysqld_41",
"mysqld_42",
"mysqld_43",
"mysqld_44",
"mysqld_45",
"mysqld_46",
"mysqld_47",
"mysqld_48",
"mysqld_49"
]
]
} |
6570 | start the server, printing error messages to the console | mysqld --console | [
"mysqld_5"
] | mysqld | mysqld | true | {
"token": [
"--console",
"|main|"
],
"oracle_man": [
[],
[
"mysqld_5",
"mysqld_6",
"mysqld_7",
"mysqld_8",
"mysqld_9",
"mysqld_10",
"mysqld_11",
"mysqld_12",
"mysqld_13",
"mysqld_14",
"mysqld_15",
"mysqld_16",
"mysqld_17",
"mysqld_18",
"mysqld_19",
"mysqld_20",
"mysqld_21",
"mysqld_22",
"mysqld_23",
"mysqld_24",
"mysqld_25",
"mysqld_26",
"mysqld_27",
"mysqld_28",
"mysqld_29",
"mysqld_30",
"mysqld_31",
"mysqld_32",
"mysqld_33",
"mysqld_34",
"mysqld_35",
"mysqld_36",
"mysqld_37",
"mysqld_38",
"mysqld_39",
"mysqld_40",
"mysqld_41",
"mysqld_42",
"mysqld_43",
"mysqld_44",
"mysqld_45",
"mysqld_46",
"mysqld_47",
"mysqld_48",
"mysqld_49"
]
]
} |
6571 | start the server, saving logging output to a custom log file | mysqld --log={{path/to/file.log}} | [
"mysqld_4",
"mysqld_5",
"mysqld_21",
"mysqld_22",
"mysqld_23",
"mysqld_24",
"mysqld_25"
] | mysqld | mysqld | true | {
"token": [
"--log",
"|main|"
],
"oracle_man": [
[
"mysqld_4",
"mysqld_21",
"mysqld_22",
"mysqld_23",
"mysqld_24",
"mysqld_25"
],
[
"mysqld_5",
"mysqld_6",
"mysqld_7",
"mysqld_8",
"mysqld_9",
"mysqld_10",
"mysqld_11",
"mysqld_12",
"mysqld_13",
"mysqld_14",
"mysqld_15",
"mysqld_16",
"mysqld_17",
"mysqld_18",
"mysqld_19",
"mysqld_20",
"mysqld_21",
"mysqld_22",
"mysqld_23",
"mysqld_24",
"mysqld_25",
"mysqld_26",
"mysqld_27",
"mysqld_28",
"mysqld_29",
"mysqld_30",
"mysqld_31",
"mysqld_32",
"mysqld_33",
"mysqld_34",
"mysqld_35",
"mysqld_36",
"mysqld_37",
"mysqld_38",
"mysqld_39",
"mysqld_40",
"mysqld_41",
"mysqld_42",
"mysqld_43",
"mysqld_44",
"mysqld_45",
"mysqld_46",
"mysqld_47",
"mysqld_48",
"mysqld_49"
]
]
} |
6572 | print the default arguments and their values and exit | mysqld --print-defaults | [
"mysqld_5"
] | mysqld | mysqld | true | {
"token": [
"--print-defaults",
"|main|"
],
"oracle_man": [
[],
[
"mysqld_5",
"mysqld_6",
"mysqld_7",
"mysqld_8",
"mysqld_9",
"mysqld_10",
"mysqld_11",
"mysqld_12",
"mysqld_13",
"mysqld_14",
"mysqld_15",
"mysqld_16",
"mysqld_17",
"mysqld_18",
"mysqld_19",
"mysqld_20",
"mysqld_21",
"mysqld_22",
"mysqld_23",
"mysqld_24",
"mysqld_25",
"mysqld_26",
"mysqld_27",
"mysqld_28",
"mysqld_29",
"mysqld_30",
"mysqld_31",
"mysqld_32",
"mysqld_33",
"mysqld_34",
"mysqld_35",
"mysqld_36",
"mysqld_37",
"mysqld_38",
"mysqld_39",
"mysqld_40",
"mysqld_41",
"mysqld_42",
"mysqld_43",
"mysqld_44",
"mysqld_45",
"mysqld_46",
"mysqld_47",
"mysqld_48",
"mysqld_49"
]
]
} |
6573 | start the server, reading arguments and values from a file | mysqld --defaults-file={{path/to/file}} | [
"mysqld_5"
] | mysqld | mysqld | true | {
"token": [
"--defaults-file",
"|main|"
],
"oracle_man": [
[],
[
"mysqld_5",
"mysqld_6",
"mysqld_7",
"mysqld_8",
"mysqld_9",
"mysqld_10",
"mysqld_11",
"mysqld_12",
"mysqld_13",
"mysqld_14",
"mysqld_15",
"mysqld_16",
"mysqld_17",
"mysqld_18",
"mysqld_19",
"mysqld_20",
"mysqld_21",
"mysqld_22",
"mysqld_23",
"mysqld_24",
"mysqld_25",
"mysqld_26",
"mysqld_27",
"mysqld_28",
"mysqld_29",
"mysqld_30",
"mysqld_31",
"mysqld_32",
"mysqld_33",
"mysqld_34",
"mysqld_35",
"mysqld_36",
"mysqld_37",
"mysqld_38",
"mysqld_39",
"mysqld_40",
"mysqld_41",
"mysqld_42",
"mysqld_43",
"mysqld_44",
"mysqld_45",
"mysqld_46",
"mysqld_47",
"mysqld_48",
"mysqld_49"
]
]
} |
6574 | start the server and listen on a custom port | mysqld --port={{port}} | [
"mysqld_4",
"mysqld_5",
"mysqld_30"
] | mysqld | mysqld | true | {
"token": [
"--port",
"|main|"
],
"oracle_man": [
[
"mysqld_4",
"mysqld_30"
],
[
"mysqld_5",
"mysqld_6",
"mysqld_7",
"mysqld_8",
"mysqld_9",
"mysqld_10",
"mysqld_11",
"mysqld_12",
"mysqld_13",
"mysqld_14",
"mysqld_15",
"mysqld_16",
"mysqld_17",
"mysqld_18",
"mysqld_19",
"mysqld_20",
"mysqld_21",
"mysqld_22",
"mysqld_23",
"mysqld_24",
"mysqld_25",
"mysqld_26",
"mysqld_27",
"mysqld_28",
"mysqld_29",
"mysqld_30",
"mysqld_31",
"mysqld_32",
"mysqld_33",
"mysqld_34",
"mysqld_35",
"mysqld_36",
"mysqld_37",
"mysqld_38",
"mysqld_39",
"mysqld_40",
"mysqld_41",
"mysqld_42",
"mysqld_43",
"mysqld_44",
"mysqld_45",
"mysqld_46",
"mysqld_47",
"mysqld_48",
"mysqld_49"
]
]
} |
6575 | show all help options and exit | mysqld --verbose --help | [
"mysqld_4",
"mysqld_5",
"mysqld_18",
"mysqld_33"
] | mysqld | mysqld | true | {
"token": [
"--verbose",
"--help",
"|main|"
],
"oracle_man": [
[],
[
"mysqld_4",
"mysqld_18",
"mysqld_33"
],
[
"mysqld_5",
"mysqld_6",
"mysqld_7",
"mysqld_8",
"mysqld_9",
"mysqld_10",
"mysqld_11",
"mysqld_12",
"mysqld_13",
"mysqld_14",
"mysqld_15",
"mysqld_16",
"mysqld_17",
"mysqld_18",
"mysqld_19",
"mysqld_20",
"mysqld_21",
"mysqld_22",
"mysqld_23",
"mysqld_24",
"mysqld_25",
"mysqld_26",
"mysqld_27",
"mysqld_28",
"mysqld_29",
"mysqld_30",
"mysqld_31",
"mysqld_32",
"mysqld_33",
"mysqld_34",
"mysqld_35",
"mysqld_36",
"mysqld_37",
"mysqld_38",
"mysqld_39",
"mysqld_40",
"mysqld_41",
"mysqld_42",
"mysqld_43",
"mysqld_44",
"mysqld_45",
"mysqld_46",
"mysqld_47",
"mysqld_48",
"mysqld_49"
]
]
} |
6576 | verify a signed file | gpgv {{path/to/file}} | [
"gpgv_3"
] | gpgv | gpgv | true | {
"token": [
"|main|"
],
"oracle_man": [
[
"gpgv_3",
"gpgv_4",
"gpgv_5",
"gpgv_6"
]
]
} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.