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 |
---|---|---|---|---|---|---|---|
3146 | compress png file with all 114 available algorithms and pick the best result | pngcrush -rem allb -brute -reduce {{in.png}} {{out.png}} | [
"pngcrush_3",
"pngcrush_5",
"pngcrush_12",
"pngcrush_13",
"pngcrush_18",
"pngcrush_19",
"pngcrush_20",
"pngcrush_27",
"pngcrush_36"
] | pngcrush | pngcrush | true | {
"token": [
"-rem",
"allb",
"-brute",
"-reduce",
"|main|"
],
"oracle_man": [
[
"pngcrush_36"
],
[],
[
"pngcrush_12",
"pngcrush_13",
"pngcrush_20",
"pngcrush_27"
],
[
"pngcrush_3",
"pngcrush_18",
"pngcrush_19"
],
[
"pngcrush_5",
"pngcrush_6",
"pngcrush_7",
"pngcrush_8"
]
]
} |
3147 | create a xar archive of all files in a given directory | xar -cf {{archive.xar}} {{path/to/directory}} | [
"xar_3",
"xar_25"
] | xar | xar | true | {
"token": [
"-cf",
"|main|"
],
"oracle_man": [
[
"xar_25"
],
[
"xar_3"
]
]
} |
3148 | list the contents of a given xar archive | xar -tf {{archive.xar}} | [
"xar_3",
"xar_26"
] | xar | xar | true | {
"token": [
"-tf",
"|main|"
],
"oracle_man": [
[
"xar_26"
],
[
"xar_3"
]
]
} |
3149 | extract the contents of a given xar archive to the current directory | xar -xf {{archive.xar}} | [
"xar_3",
"xar_27"
] | xar | xar | true | {
"token": [
"-xf",
"|main|"
],
"oracle_man": [
[
"xar_27"
],
[
"xar_3"
]
]
} |
3158 | compile a .net project in release mode | dotnet publish --configuration Release {{path/to/project_file}} | [
"dotnet-publish_0",
"dotnet-publish_1",
"dotnet-publish_2",
"dotnet-publish_3",
"dotnet-publish_4",
"dotnet-publish_6",
"dotnet-publish_11",
"dotnet-publish_14",
"dotnet-publish_40",
"dotnet-publish_64",
"dotnet-publish_82",
"dotnet-publish_84",
"dotnet-publish_86",
"dotnet-publish_88",
"dotnet-publish_90"
] | dotnet-publish | dotnet-publish | true | {
"token": [
"dotnet",
"publish",
"--configuration",
"Release",
"|main|"
],
"oracle_man": [
[
"dotnet-publish_0",
"dotnet-publish_1",
"dotnet-publish_6",
"dotnet-publish_11",
"dotnet-publish_82",
"dotnet-publish_84",
"dotnet-publish_86",
"dotnet-publish_88",
"dotnet-publish_90"
],
[
"dotnet-publish_0",
"dotnet-publish_1",
"dotnet-publish_6",
"dotnet-publish_11",
"dotnet-publish_82",
"dotnet-publish_84",
"dotnet-publish_86",
"dotnet-publish_88",
"dotnet-publish_90"
],
[
"dotnet-publish_2",
"dotnet-publish_3",
"dotnet-publish_4",
"dotnet-publish_14",
"dotnet-publish_40",
"dotnet-publish_64"
],
[],
[
"dotnet-publish_6",
"dotnet-publish_7",
"dotnet-publish_8",
"dotnet-publish_9",
"dotnet-publish_10",
"dotnet-publish_11",
"dotnet-publish_12",
"dotnet-publish_13"
]
]
} |
3159 | publish the .net core runtime with your application for the specified runtime | dotnet publish --self-contained true --runtime {{runtime_identifier}} {{path/to/project_file}} | [
"dotnet-publish_0",
"dotnet-publish_1",
"dotnet-publish_2",
"dotnet-publish_3",
"dotnet-publish_4",
"dotnet-publish_6",
"dotnet-publish_11",
"dotnet-publish_32",
"dotnet-publish_34",
"dotnet-publish_56",
"dotnet-publish_58",
"dotnet-publish_74",
"dotnet-publish_82",
"dotnet-publish_84",
"dotnet-publish_86",
"dotnet-publish_88",
"dotnet-publish_90"
] | dotnet-publish | dotnet-publish | true | {
"token": [
"dotnet",
"publish",
"--self-contained",
"true",
"--runtime",
"|main|"
],
"oracle_man": [
[
"dotnet-publish_0",
"dotnet-publish_1",
"dotnet-publish_6",
"dotnet-publish_11",
"dotnet-publish_82",
"dotnet-publish_84",
"dotnet-publish_86",
"dotnet-publish_88",
"dotnet-publish_90"
],
[
"dotnet-publish_0",
"dotnet-publish_1",
"dotnet-publish_6",
"dotnet-publish_11",
"dotnet-publish_82",
"dotnet-publish_84",
"dotnet-publish_86",
"dotnet-publish_88",
"dotnet-publish_90"
],
[
"dotnet-publish_2",
"dotnet-publish_3",
"dotnet-publish_32",
"dotnet-publish_56"
],
[],
[
"dotnet-publish_2",
"dotnet-publish_3",
"dotnet-publish_4",
"dotnet-publish_34",
"dotnet-publish_58",
"dotnet-publish_74",
"dotnet-publish_88"
],
[
"dotnet-publish_6",
"dotnet-publish_7",
"dotnet-publish_8",
"dotnet-publish_9",
"dotnet-publish_10",
"dotnet-publish_11",
"dotnet-publish_12",
"dotnet-publish_13"
]
]
} |
3160 | package the application into a platformspecific singlefile executable | dotnet publish --runtime {{runtime_identifier}} -p:PublishSingleFile=true {{path/to/project_file}} | [
"dotnet-publish_0",
"dotnet-publish_1",
"dotnet-publish_2",
"dotnet-publish_3",
"dotnet-publish_4",
"dotnet-publish_6",
"dotnet-publish_11",
"dotnet-publish_34",
"dotnet-publish_58",
"dotnet-publish_74",
"dotnet-publish_82",
"dotnet-publish_84",
"dotnet-publish_86",
"dotnet-publish_88",
"dotnet-publish_90"
] | dotnet-publish | dotnet-publish | true | {
"token": [
"dotnet",
"publish",
"--runtime",
"-p:PublishSingleFile=true",
"|main|"
],
"oracle_man": [
[
"dotnet-publish_0",
"dotnet-publish_1",
"dotnet-publish_6",
"dotnet-publish_11",
"dotnet-publish_82",
"dotnet-publish_84",
"dotnet-publish_86",
"dotnet-publish_88",
"dotnet-publish_90"
],
[
"dotnet-publish_0",
"dotnet-publish_1",
"dotnet-publish_6",
"dotnet-publish_11",
"dotnet-publish_82",
"dotnet-publish_84",
"dotnet-publish_86",
"dotnet-publish_88",
"dotnet-publish_90"
],
[
"dotnet-publish_2",
"dotnet-publish_3",
"dotnet-publish_4",
"dotnet-publish_34",
"dotnet-publish_58",
"dotnet-publish_74",
"dotnet-publish_88"
],
[],
[
"dotnet-publish_6",
"dotnet-publish_7",
"dotnet-publish_8",
"dotnet-publish_9",
"dotnet-publish_10",
"dotnet-publish_11",
"dotnet-publish_12",
"dotnet-publish_13"
]
]
} |
3161 | trim unused libraries to reduce the deployment size of an application | dotnet publish --self-contained true --runtime {{runtime_identifier}} -p:PublishTrimmed=true {{path/to/project_file}} | [
"dotnet-publish_0",
"dotnet-publish_1",
"dotnet-publish_2",
"dotnet-publish_3",
"dotnet-publish_4",
"dotnet-publish_6",
"dotnet-publish_11",
"dotnet-publish_32",
"dotnet-publish_34",
"dotnet-publish_56",
"dotnet-publish_58",
"dotnet-publish_74",
"dotnet-publish_82",
"dotnet-publish_84",
"dotnet-publish_86",
"dotnet-publish_88",
"dotnet-publish_90"
] | dotnet-publish | dotnet-publish | true | {
"token": [
"dotnet",
"publish",
"--self-contained",
"true",
"--runtime",
"-p:PublishTrimmed=true",
"|main|"
],
"oracle_man": [
[
"dotnet-publish_0",
"dotnet-publish_1",
"dotnet-publish_6",
"dotnet-publish_11",
"dotnet-publish_82",
"dotnet-publish_84",
"dotnet-publish_86",
"dotnet-publish_88",
"dotnet-publish_90"
],
[
"dotnet-publish_0",
"dotnet-publish_1",
"dotnet-publish_6",
"dotnet-publish_11",
"dotnet-publish_82",
"dotnet-publish_84",
"dotnet-publish_86",
"dotnet-publish_88",
"dotnet-publish_90"
],
[
"dotnet-publish_2",
"dotnet-publish_3",
"dotnet-publish_32",
"dotnet-publish_56"
],
[],
[
"dotnet-publish_2",
"dotnet-publish_3",
"dotnet-publish_4",
"dotnet-publish_34",
"dotnet-publish_58",
"dotnet-publish_74",
"dotnet-publish_88"
],
[],
[
"dotnet-publish_6",
"dotnet-publish_7",
"dotnet-publish_8",
"dotnet-publish_9",
"dotnet-publish_10",
"dotnet-publish_11",
"dotnet-publish_12",
"dotnet-publish_13"
]
]
} |
3162 | compile a .net project without restoring dependencies | dotnet publish --no-restore {{path/to/project_file}} | [
"dotnet-publish_0",
"dotnet-publish_1",
"dotnet-publish_2",
"dotnet-publish_3",
"dotnet-publish_6",
"dotnet-publish_11",
"dotnet-publish_25",
"dotnet-publish_28",
"dotnet-publish_52",
"dotnet-publish_82",
"dotnet-publish_84",
"dotnet-publish_86",
"dotnet-publish_88",
"dotnet-publish_90"
] | dotnet-publish | dotnet-publish | true | {
"token": [
"dotnet",
"publish",
"--no-restore",
"|main|"
],
"oracle_man": [
[
"dotnet-publish_0",
"dotnet-publish_1",
"dotnet-publish_6",
"dotnet-publish_11",
"dotnet-publish_82",
"dotnet-publish_84",
"dotnet-publish_86",
"dotnet-publish_88",
"dotnet-publish_90"
],
[
"dotnet-publish_0",
"dotnet-publish_1",
"dotnet-publish_6",
"dotnet-publish_11",
"dotnet-publish_82",
"dotnet-publish_84",
"dotnet-publish_86",
"dotnet-publish_88",
"dotnet-publish_90"
],
[
"dotnet-publish_2",
"dotnet-publish_3",
"dotnet-publish_25",
"dotnet-publish_28",
"dotnet-publish_52"
],
[
"dotnet-publish_6",
"dotnet-publish_7",
"dotnet-publish_8",
"dotnet-publish_9",
"dotnet-publish_10",
"dotnet-publish_11",
"dotnet-publish_12",
"dotnet-publish_13"
]
]
} |
3163 | specify the output directory | dotnet publish --output {{path/to/directory}} {{path/to/project_file}} | [
"dotnet-publish_0",
"dotnet-publish_1",
"dotnet-publish_2",
"dotnet-publish_3",
"dotnet-publish_4",
"dotnet-publish_6",
"dotnet-publish_11",
"dotnet-publish_30",
"dotnet-publish_54",
"dotnet-publish_72",
"dotnet-publish_82",
"dotnet-publish_84",
"dotnet-publish_86",
"dotnet-publish_88",
"dotnet-publish_90"
] | dotnet-publish | dotnet-publish | true | {
"token": [
"dotnet",
"publish",
"--output",
"|main|"
],
"oracle_man": [
[
"dotnet-publish_0",
"dotnet-publish_1",
"dotnet-publish_6",
"dotnet-publish_11",
"dotnet-publish_82",
"dotnet-publish_84",
"dotnet-publish_86",
"dotnet-publish_88",
"dotnet-publish_90"
],
[
"dotnet-publish_0",
"dotnet-publish_1",
"dotnet-publish_6",
"dotnet-publish_11",
"dotnet-publish_82",
"dotnet-publish_84",
"dotnet-publish_86",
"dotnet-publish_88",
"dotnet-publish_90"
],
[
"dotnet-publish_2",
"dotnet-publish_3",
"dotnet-publish_4",
"dotnet-publish_30",
"dotnet-publish_54",
"dotnet-publish_72"
],
[
"dotnet-publish_6",
"dotnet-publish_7",
"dotnet-publish_8",
"dotnet-publish_9",
"dotnet-publish_10",
"dotnet-publish_11",
"dotnet-publish_12",
"dotnet-publish_13"
]
]
} |
3164 | name a hash | nth -t {{5f4dcc3b5aa765d61d8327deb882cf99}} | [
"nth_2"
] | nth | nth | true | {
"token": [
"-t",
"|main|"
],
"oracle_man": [
[],
[
"nth_2",
"nth_3",
"nth_4",
"nth_5",
"nth_6",
"nth_7"
]
]
} |
3165 | name hashes in a file | nth -f {{path/to/hashes}} | [
"nth_2"
] | nth | nth | true | {
"token": [
"-f",
"|main|"
],
"oracle_man": [
[],
[
"nth_2",
"nth_3",
"nth_4",
"nth_5",
"nth_6",
"nth_7"
]
]
} |
3166 | output in json format | nth -t {{5f4dcc3b5aa765d61d8327deb882cf99}} -g | [
"nth_2"
] | nth | nth | true | {
"token": [
"-t",
"-g",
"|main|"
],
"oracle_man": [
[],
[],
[
"nth_2",
"nth_3",
"nth_4",
"nth_5",
"nth_6",
"nth_7"
]
]
} |
3167 | decode hash in base64 before naming it | nth -t {{NWY0ZGNjM2I1YWE3NjVkNjFkODMyN2RlYjg4MmNmOTkK}} -b64 | [
"nth_2"
] | nth | nth | true | {
"token": [
"-t",
"-b64",
"|main|"
],
"oracle_man": [
[],
[],
[
"nth_2",
"nth_3",
"nth_4",
"nth_5",
"nth_6",
"nth_7"
]
]
} |
3179 | merge all commits not present on the target branch from the source branch to target branch, and delete the source branch | git graft {{source_branch}} {{target_branch}} | [
"git-graft_3",
"git-graft_6"
] | git-graft | git-graft | true | {
"token": [
"git",
"graft",
"|main|"
],
"oracle_man": [
[
"git-graft_6"
],
[
"git-graft_6"
],
[
"git-graft_3"
]
]
} |
3187 | play a video or audio file | mpv {{file}} | [
"mpv_3"
] | mpv | mpv | true | {
"token": [
"|main|"
],
"oracle_man": [
[
"mpv_3",
"mpv_4"
]
]
} |
3188 | play a video or audio file from a url | mpv '{{https://www.youtube.com/watch?v=dQw4w9WgXcQ}}' | [
"mpv_3"
] | mpv | mpv | true | {
"token": [
"|main|"
],
"oracle_man": [
[
"mpv_3",
"mpv_4"
]
]
} |
3189 | jump backward/forward 5 seconds | LEFT <or> RIGHT | [
"mpv_3",
"mpv_9",
"mpv_11",
"mpv_54",
"mpv_125",
"mpv_220",
"mpv_318",
"mpv_329",
"mpv_332",
"mpv_666",
"mpv_1142",
"mpv_1952",
"mpv_1953",
"mpv_1996",
"mpv_2331",
"mpv_2597",
"mpv_2663",
"mpv_2689",
"mpv_3622",
"mpv_3623",
"mpv_3624",
"mpv_3625",
"mpv_4078"
] | mpv | mpv | true | {
"token": [
"LEFT",
"or",
"RIGHT",
"|main|"
],
"oracle_man": [
[
"mpv_9",
"mpv_11",
"mpv_54",
"mpv_3622",
"mpv_3624"
],
[
"mpv_125",
"mpv_220",
"mpv_318",
"mpv_329",
"mpv_332",
"mpv_666",
"mpv_1142",
"mpv_1952",
"mpv_1953",
"mpv_1996",
"mpv_2331",
"mpv_2597",
"mpv_2663",
"mpv_2689",
"mpv_4078"
],
[
"mpv_3623",
"mpv_3625"
],
[
"mpv_3",
"mpv_4"
]
]
} |
3190 | jump backward/forward 1 minute | DOWN <or> UP | [
"mpv_3",
"mpv_10",
"mpv_125",
"mpv_220",
"mpv_318",
"mpv_329",
"mpv_332",
"mpv_666",
"mpv_1142",
"mpv_1952",
"mpv_1953",
"mpv_1996",
"mpv_2331",
"mpv_2597",
"mpv_2663",
"mpv_2689",
"mpv_3553",
"mpv_3635",
"mpv_3636",
"mpv_4078"
] | mpv | mpv | true | {
"token": [
"DOWN",
"or",
"UP",
"|main|"
],
"oracle_man": [
[
"mpv_10",
"mpv_3636"
],
[
"mpv_125",
"mpv_220",
"mpv_318",
"mpv_329",
"mpv_332",
"mpv_666",
"mpv_1142",
"mpv_1952",
"mpv_1953",
"mpv_1996",
"mpv_2331",
"mpv_2597",
"mpv_2663",
"mpv_2689",
"mpv_4078"
],
[
"mpv_10",
"mpv_3553",
"mpv_3635"
],
[
"mpv_3",
"mpv_4"
]
]
} |
3191 | decrease or increase playback speed by 10% | [ <or> ] | [
"mpv_3",
"mpv_125",
"mpv_220",
"mpv_318",
"mpv_329",
"mpv_332",
"mpv_666",
"mpv_1142",
"mpv_1952",
"mpv_1953",
"mpv_1996",
"mpv_2331",
"mpv_2597",
"mpv_2663",
"mpv_2689",
"mpv_4078"
] | mpv | mpv | true | {
"token": [
"[",
"or",
"]",
"|main|"
],
"oracle_man": [
[],
[
"mpv_125",
"mpv_220",
"mpv_318",
"mpv_329",
"mpv_332",
"mpv_666",
"mpv_1142",
"mpv_1952",
"mpv_1953",
"mpv_1996",
"mpv_2331",
"mpv_2597",
"mpv_2663",
"mpv_2689",
"mpv_4078"
],
[],
[
"mpv_3",
"mpv_4"
]
]
} |
3192 | play a file at a specified speed (0.01 to 100, default 1) | mpv --speed {{speed}} {{file}} | [
"mpv_3",
"mpv_242",
"mpv_358",
"mpv_2302",
"mpv_2303"
] | mpv | mpv | true | {
"token": [
"--speed",
"|main|"
],
"oracle_man": [
[
"mpv_242",
"mpv_358",
"mpv_2302",
"mpv_2303"
],
[
"mpv_3",
"mpv_4"
]
]
} |
3193 | play a file using a profile defined in the `mpv.conf` file | mpv --profile {{profile_name}} {{file}} | [
"mpv_3",
"mpv_150",
"mpv_151",
"mpv_154",
"mpv_232",
"mpv_261",
"mpv_290",
"mpv_293",
"mpv_489",
"mpv_2103",
"mpv_2143",
"mpv_2173",
"mpv_2182",
"mpv_2230",
"mpv_2257"
] | mpv | mpv | true | {
"token": [
"--profile",
"|main|"
],
"oracle_man": [
[
"mpv_150",
"mpv_151",
"mpv_154",
"mpv_232",
"mpv_261",
"mpv_290",
"mpv_293",
"mpv_489",
"mpv_2103",
"mpv_2143",
"mpv_2173",
"mpv_2182",
"mpv_2230",
"mpv_2257"
],
[
"mpv_3",
"mpv_4"
]
]
} |
3194 | display the output of webcam or other video input device | mpv /dev/{{video0}} | [
"mpv_3"
] | mpv | mpv | true | {
"token": [
"|main|"
],
"oracle_man": [
[
"mpv_3",
"mpv_4"
]
]
} |
3195 | capture traffic of all interfaces | ngrep -d any | [
"ngrep_2",
"ngrep_3",
"ngrep_32",
"ngrep_38",
"ngrep_41"
] | ngrep | ngrep | true | {
"token": [
"-d",
"any",
"|main|"
],
"oracle_man": [
[
"ngrep_2",
"ngrep_32",
"ngrep_38",
"ngrep_41"
],
[],
[
"ngrep_3"
]
]
} |
3196 | capture traffic of a specific interface | ngrep -d {{eth0}} | [
"ngrep_2",
"ngrep_3",
"ngrep_32",
"ngrep_38",
"ngrep_41"
] | ngrep | ngrep | true | {
"token": [
"-d",
"|main|"
],
"oracle_man": [
[
"ngrep_2",
"ngrep_32",
"ngrep_38",
"ngrep_41"
],
[
"ngrep_3"
]
]
} |
3197 | capture traffic crossing port 22 of interface eth0 | ngrep -d {{eth0}} port {{22}} | [
"ngrep_2",
"ngrep_3",
"ngrep_32",
"ngrep_38",
"ngrep_41",
"ngrep_55",
"ngrep_56",
"ngrep_57"
] | ngrep | ngrep | true | {
"token": [
"-d",
"port",
"|main|"
],
"oracle_man": [
[
"ngrep_2",
"ngrep_32",
"ngrep_38",
"ngrep_41"
],
[
"ngrep_55",
"ngrep_56",
"ngrep_57"
],
[
"ngrep_3"
]
]
} |
3198 | capture traffic from or to a host | ngrep host {{www.example.com}} | [
"ngrep_3",
"ngrep_43",
"ngrep_44",
"ngrep_45",
"ngrep_48",
"ngrep_49"
] | ngrep | ngrep | true | {
"token": [
"host",
"|main|"
],
"oracle_man": [
[
"ngrep_43",
"ngrep_44",
"ngrep_45",
"ngrep_48",
"ngrep_49"
],
[
"ngrep_3"
]
]
} |
3199 | filter keyword 'useragent' of interface eth0 | ngrep -d {{eth0}} '{{User-Agent:}}' | [
"ngrep_2",
"ngrep_3",
"ngrep_32",
"ngrep_38",
"ngrep_41"
] | ngrep | ngrep | true | {
"token": [
"-d",
"|main|"
],
"oracle_man": [
[
"ngrep_2",
"ngrep_32",
"ngrep_38",
"ngrep_41"
],
[
"ngrep_3"
]
]
} |
3200 | run an optimization or analysis on a bitcode file | opt -{{passname}} {{path/to/file.bc}} -S -o {{file_opt.bc}} | [
"opt_3",
"opt_7",
"opt_10",
"opt_11",
"opt_14"
] | opt | opt | true | {
"token": [
"-S",
"-o",
"|main|"
],
"oracle_man": [
[
"opt_11"
],
[
"opt_7",
"opt_10",
"opt_14"
],
[
"opt_3",
"opt_4",
"opt_5",
"opt_6",
"opt_7"
]
]
} |
3201 | output the control flow graph of a function to a `.dot` file | opt {{-dot-cfg}} -S {{path/to/file.bc}} -disable-output | [
"opt_3",
"opt_11",
"opt_18"
] | opt | opt | true | {
"token": [
"-S",
"-disable-output",
"|main|"
],
"oracle_man": [
[
"opt_11"
],
[
"opt_18"
],
[
"opt_3",
"opt_4",
"opt_5",
"opt_6",
"opt_7"
]
]
} |
3202 | optimize the program at level 2 and output the result to another file | opt -O2 {{path/to/file.bc}} -S -o {{path/to/output_file.bc}} | [
"opt_3",
"opt_7",
"opt_10",
"opt_11",
"opt_14"
] | opt | opt | true | {
"token": [
"-O2",
"-S",
"-o",
"|main|"
],
"oracle_man": [
[],
[
"opt_11"
],
[
"opt_7",
"opt_10",
"opt_14"
],
[
"opt_3",
"opt_4",
"opt_5",
"opt_6",
"opt_7"
]
]
} |
3238 | display all input data using the specified data configuration | ffe --configuration={{path/to/config.ffe}} {{path/to/input}} | [
"ffe_3",
"ffe_5"
] | ffe | ffe | true | {
"token": [
"--configuration",
"|main|"
],
"oracle_man": [
[
"ffe_5"
],
[
"ffe_3"
]
]
} |
3239 | convert an input file to an output file in a new format | ffe --output={{path/to/output}} -c {{path/to/config.ffe}} {{path/to/input}} | [
"ffe_3",
"ffe_5",
"ffe_8",
"ffe_12",
"ffe_29",
"ffe_30",
"ffe_34",
"ffe_95",
"ffe_139",
"ffe_140",
"ffe_146"
] | ffe | ffe | true | {
"token": [
"--output",
"-c",
"|main|"
],
"oracle_man": [
[
"ffe_8",
"ffe_34"
],
[
"ffe_5",
"ffe_12",
"ffe_29",
"ffe_30",
"ffe_95",
"ffe_139",
"ffe_140",
"ffe_146"
],
[
"ffe_3"
]
]
} |
3240 | select input structure and print format from definitions in `~/.fferc` config file | ffe --structure={{structure}} --print={{format}} {{path/to/input}} | [
"ffe_3",
"ffe_6",
"ffe_7",
"ffe_33",
"ffe_35"
] | ffe | ffe | true | {
"token": [
"--structure",
"--print",
"|main|"
],
"oracle_man": [
[
"ffe_6",
"ffe_33"
],
[
"ffe_7",
"ffe_35"
],
[
"ffe_3"
]
]
} |
3241 | write only the selected fields | ffe --field-list="{{FirstName,LastName,Age}}" -c {{path/to/config.ffe}} {{path/to/input}} | [
"ffe_3",
"ffe_5",
"ffe_9",
"ffe_12",
"ffe_29",
"ffe_30",
"ffe_95",
"ffe_139",
"ffe_140",
"ffe_146",
"ffe_152"
] | ffe | ffe | true | {
"token": [
"--field-list",
"-c",
"|main|"
],
"oracle_man": [
[
"ffe_9",
"ffe_152"
],
[
"ffe_5",
"ffe_12",
"ffe_29",
"ffe_30",
"ffe_95",
"ffe_139",
"ffe_140",
"ffe_146"
],
[
"ffe_3"
]
]
} |
3242 | write only the records that match an expression | ffe -e "{{LastName=Smith}}" -c {{path/to/config.ffe}} {{path/to/input}} | [
"ffe_3",
"ffe_5",
"ffe_10",
"ffe_12",
"ffe_21",
"ffe_29",
"ffe_30",
"ffe_95",
"ffe_121",
"ffe_139",
"ffe_140",
"ffe_146"
] | ffe | ffe | true | {
"token": [
"-e",
"-c",
"|main|"
],
"oracle_man": [
[
"ffe_10",
"ffe_21",
"ffe_121",
"ffe_139"
],
[
"ffe_5",
"ffe_12",
"ffe_29",
"ffe_30",
"ffe_95",
"ffe_139",
"ffe_140",
"ffe_146"
],
[
"ffe_3"
]
]
} |
3243 | display help | ffe --help | [
"ffe_3",
"ffe_18"
] | ffe | ffe | true | {
"token": [
"--help",
"|main|"
],
"oracle_man": [
[
"ffe_18"
],
[
"ffe_3"
]
]
} |
3244 | build a recursive fls list over a device, output paths will start with c | fls -r -m {{C:}} {{/dev/loop1p1}} | [
"fls_2",
"fls_3",
"fls_12",
"fls_14",
"fls_15",
"fls_26",
"fls_28",
"fls_32"
] | fls | fls | true | {
"token": [
"-r",
"-m",
"|main|"
],
"oracle_man": [
[
"fls_14",
"fls_26",
"fls_28"
],
[
"fls_2",
"fls_12",
"fls_15",
"fls_32"
],
[
"fls_3",
"fls_4",
"fls_5",
"fls_6",
"fls_7",
"fls_8",
"fls_9",
"fls_10",
"fls_11",
"fls_12",
"fls_13",
"fls_14",
"fls_15",
"fls_16",
"fls_17",
"fls_18",
"fls_19",
"fls_20",
"fls_21",
"fls_22",
"fls_23",
"fls_24"
]
]
} |
3245 | analyse a single partition, providing the sector offset at which the filesystem starts in the image | fls -r -m {{C:}} -o {{sector}} {{path/to/image_file}} | [
"fls_2",
"fls_3",
"fls_12",
"fls_14",
"fls_15",
"fls_17",
"fls_26",
"fls_28",
"fls_32",
"fls_34",
"fls_36"
] | fls | fls | true | {
"token": [
"-r",
"-m",
"-o",
"|main|"
],
"oracle_man": [
[
"fls_14",
"fls_26",
"fls_28"
],
[
"fls_2",
"fls_12",
"fls_15",
"fls_32"
],
[
"fls_2",
"fls_17",
"fls_34",
"fls_36"
],
[
"fls_3",
"fls_4",
"fls_5",
"fls_6",
"fls_7",
"fls_8",
"fls_9",
"fls_10",
"fls_11",
"fls_12",
"fls_13",
"fls_14",
"fls_15",
"fls_16",
"fls_17",
"fls_18",
"fls_19",
"fls_20",
"fls_21",
"fls_22",
"fls_23",
"fls_24"
]
]
} |
3246 | analyse a single partition, providing the timezone of the original system | fls -r -m {{C:}} -z {{timezone}} {{/dev/loop1p1}} | [
"fls_2",
"fls_3",
"fls_12",
"fls_14",
"fls_15",
"fls_22",
"fls_26",
"fls_28",
"fls_32"
] | fls | fls | true | {
"token": [
"-r",
"-m",
"-z",
"|main|"
],
"oracle_man": [
[
"fls_14",
"fls_26",
"fls_28"
],
[
"fls_2",
"fls_12",
"fls_15",
"fls_32"
],
[
"fls_2",
"fls_22"
],
[
"fls_3",
"fls_4",
"fls_5",
"fls_6",
"fls_7",
"fls_8",
"fls_9",
"fls_10",
"fls_11",
"fls_12",
"fls_13",
"fls_14",
"fls_15",
"fls_16",
"fls_17",
"fls_18",
"fls_19",
"fls_20",
"fls_21",
"fls_22",
"fls_23",
"fls_24"
]
]
} |
3255 | produce a complete html document from a source code file | highlight --out-format={{html}} --style {{theme_name}} --syntax {{language}} {{path/to/source_code}} | [
"highlight_3",
"highlight_13",
"highlight_14",
"highlight_15",
"highlight_25",
"highlight_30",
"highlight_31",
"highlight_33",
"highlight_44",
"highlight_98",
"highlight_100",
"highlight_103"
] | highlight | highlight | true | {
"token": [
"--out-format",
"--style",
"--syntax",
"|main|"
],
"oracle_man": [
[
"highlight_30",
"highlight_98",
"highlight_100",
"highlight_103"
],
[
"highlight_25",
"highlight_31",
"highlight_33",
"highlight_44"
],
[
"highlight_13",
"highlight_14",
"highlight_15"
],
[
"highlight_3",
"highlight_4"
]
]
} |
3256 | produce an html fragment, suitable for inclusion in a larger document | highlight --out-format={{html}} --fragment --syntax {{language}} {{source_file}} | [
"highlight_3",
"highlight_13",
"highlight_14",
"highlight_15",
"highlight_30",
"highlight_34",
"highlight_98",
"highlight_100",
"highlight_103"
] | highlight | highlight | true | {
"token": [
"--out-format",
"--fragment",
"--syntax",
"|main|"
],
"oracle_man": [
[
"highlight_30",
"highlight_98",
"highlight_100",
"highlight_103"
],
[
"highlight_34"
],
[
"highlight_13",
"highlight_14",
"highlight_15"
],
[
"highlight_3",
"highlight_4"
]
]
} |
3257 | inline the css styling in every tag | highlight --out-format={{html}} --inline-css --syntax {{language}} {{source_file}} | [
"highlight_3",
"highlight_13",
"highlight_14",
"highlight_15",
"highlight_30",
"highlight_62",
"highlight_98",
"highlight_100",
"highlight_103"
] | highlight | highlight | true | {
"token": [
"--out-format",
"--inline-css",
"--syntax",
"|main|"
],
"oracle_man": [
[
"highlight_30",
"highlight_98",
"highlight_100",
"highlight_103"
],
[
"highlight_62"
],
[
"highlight_13",
"highlight_14",
"highlight_15"
],
[
"highlight_3",
"highlight_4"
]
]
} |
3258 | list all supported languages, themes, or plugins | highlight --list-scripts {{langs|themes|plugins}} | [
"highlight_3",
"highlight_19",
"highlight_104"
] | highlight | highlight | true | {
"token": [
"--list-scripts",
"|main|"
],
"oracle_man": [
[
"highlight_19",
"highlight_104"
],
[
"highlight_3",
"highlight_4"
]
]
} |
3259 | print a css stylesheet for a theme | highlight --out-format={{html}} --print-style --style {{theme_name}} --syntax {{language}}] --stdout | [
"highlight_3",
"highlight_13",
"highlight_14",
"highlight_15",
"highlight_25",
"highlight_27",
"highlight_30",
"highlight_31",
"highlight_33",
"highlight_44",
"highlight_98",
"highlight_100",
"highlight_103"
] | highlight | highlight | true | {
"token": [
"--out-format",
"--print-style",
"--style",
"--syntax",
"--stdout",
"|main|"
],
"oracle_man": [
[
"highlight_30",
"highlight_98",
"highlight_100",
"highlight_103"
],
[
"highlight_25",
"highlight_27"
],
[
"highlight_25",
"highlight_31",
"highlight_33",
"highlight_44"
],
[
"highlight_13",
"highlight_14",
"highlight_15"
],
[
"highlight_27"
],
[
"highlight_3",
"highlight_4"
]
]
} |
3271 | switch to an existing branch | git switch {{branch_name}} | [
"git-switch_2",
"git-switch_3",
"git-switch_13",
"git-switch_15",
"git-switch_18",
"git-switch_33",
"git-switch_36",
"git-switch_38",
"git-switch_40",
"git-switch_42",
"git-switch_44",
"git-switch_45",
"git-switch_47",
"git-switch_49",
"git-switch_51",
"git-switch_53"
] | git-switch | git-switch | true | {
"token": [
"git",
"switch",
"|main|"
],
"oracle_man": [
[
"git-switch_2",
"git-switch_13",
"git-switch_15",
"git-switch_18",
"git-switch_33",
"git-switch_36",
"git-switch_38",
"git-switch_40",
"git-switch_42",
"git-switch_45",
"git-switch_47",
"git-switch_49",
"git-switch_51",
"git-switch_53"
],
[
"git-switch_2",
"git-switch_18",
"git-switch_33",
"git-switch_36",
"git-switch_38",
"git-switch_40",
"git-switch_42",
"git-switch_44",
"git-switch_45",
"git-switch_47",
"git-switch_49",
"git-switch_51",
"git-switch_53"
],
[
"git-switch_3",
"git-switch_4",
"git-switch_5",
"git-switch_6"
]
]
} |
3272 | create a new branch and switch to it | git switch --create {{branch_name}} | [
"git-switch_2",
"git-switch_3",
"git-switch_12",
"git-switch_13",
"git-switch_14",
"git-switch_15",
"git-switch_18",
"git-switch_33",
"git-switch_36",
"git-switch_38",
"git-switch_40",
"git-switch_42",
"git-switch_44",
"git-switch_45",
"git-switch_47",
"git-switch_49",
"git-switch_51",
"git-switch_53"
] | git-switch | git-switch | true | {
"token": [
"git",
"switch",
"--create",
"|main|"
],
"oracle_man": [
[
"git-switch_2",
"git-switch_13",
"git-switch_15",
"git-switch_18",
"git-switch_33",
"git-switch_36",
"git-switch_38",
"git-switch_40",
"git-switch_42",
"git-switch_45",
"git-switch_47",
"git-switch_49",
"git-switch_51",
"git-switch_53"
],
[
"git-switch_2",
"git-switch_18",
"git-switch_33",
"git-switch_36",
"git-switch_38",
"git-switch_40",
"git-switch_42",
"git-switch_44",
"git-switch_45",
"git-switch_47",
"git-switch_49",
"git-switch_51",
"git-switch_53"
],
[
"git-switch_12",
"git-switch_14"
],
[
"git-switch_3",
"git-switch_4",
"git-switch_5",
"git-switch_6"
]
]
} |
3273 | create a new branch based on an existing commit and switch to it | git switch --create {{branch_name}} {{commit}} | [
"git-switch_2",
"git-switch_3",
"git-switch_12",
"git-switch_13",
"git-switch_14",
"git-switch_15",
"git-switch_18",
"git-switch_33",
"git-switch_36",
"git-switch_38",
"git-switch_40",
"git-switch_42",
"git-switch_44",
"git-switch_45",
"git-switch_47",
"git-switch_49",
"git-switch_51",
"git-switch_53"
] | git-switch | git-switch | true | {
"token": [
"git",
"switch",
"--create",
"|main|"
],
"oracle_man": [
[
"git-switch_2",
"git-switch_13",
"git-switch_15",
"git-switch_18",
"git-switch_33",
"git-switch_36",
"git-switch_38",
"git-switch_40",
"git-switch_42",
"git-switch_45",
"git-switch_47",
"git-switch_49",
"git-switch_51",
"git-switch_53"
],
[
"git-switch_2",
"git-switch_18",
"git-switch_33",
"git-switch_36",
"git-switch_38",
"git-switch_40",
"git-switch_42",
"git-switch_44",
"git-switch_45",
"git-switch_47",
"git-switch_49",
"git-switch_51",
"git-switch_53"
],
[
"git-switch_12",
"git-switch_14"
],
[
"git-switch_3",
"git-switch_4",
"git-switch_5",
"git-switch_6"
]
]
} |
3274 | switch to the previous branch | git switch - | [
"git-switch_0",
"git-switch_1",
"git-switch_2",
"git-switch_3",
"git-switch_4",
"git-switch_5",
"git-switch_8",
"git-switch_9",
"git-switch_10",
"git-switch_12",
"git-switch_13",
"git-switch_14",
"git-switch_15",
"git-switch_16",
"git-switch_17",
"git-switch_18",
"git-switch_19",
"git-switch_20",
"git-switch_22",
"git-switch_23",
"git-switch_24",
"git-switch_26",
"git-switch_27",
"git-switch_28",
"git-switch_29",
"git-switch_30",
"git-switch_31",
"git-switch_32",
"git-switch_33",
"git-switch_34",
"git-switch_36",
"git-switch_38",
"git-switch_40",
"git-switch_41",
"git-switch_42",
"git-switch_43",
"git-switch_44",
"git-switch_45",
"git-switch_47",
"git-switch_49",
"git-switch_51",
"git-switch_53"
] | git-switch | git-switch | true | {
"token": [
"git",
"switch",
"-",
"|main|"
],
"oracle_man": [
[
"git-switch_2",
"git-switch_13",
"git-switch_15",
"git-switch_18",
"git-switch_33",
"git-switch_36",
"git-switch_38",
"git-switch_40",
"git-switch_42",
"git-switch_45",
"git-switch_47",
"git-switch_49",
"git-switch_51",
"git-switch_53"
],
[
"git-switch_2",
"git-switch_18",
"git-switch_33",
"git-switch_36",
"git-switch_38",
"git-switch_40",
"git-switch_42",
"git-switch_44",
"git-switch_45",
"git-switch_47",
"git-switch_49",
"git-switch_51",
"git-switch_53"
],
[
"git-switch_0",
"git-switch_1",
"git-switch_2",
"git-switch_4",
"git-switch_5",
"git-switch_8",
"git-switch_9",
"git-switch_10",
"git-switch_12",
"git-switch_13",
"git-switch_14",
"git-switch_15",
"git-switch_16",
"git-switch_17",
"git-switch_18",
"git-switch_19",
"git-switch_20",
"git-switch_22",
"git-switch_23",
"git-switch_24",
"git-switch_26",
"git-switch_27",
"git-switch_28",
"git-switch_29",
"git-switch_30",
"git-switch_31",
"git-switch_32",
"git-switch_33",
"git-switch_34",
"git-switch_41",
"git-switch_42",
"git-switch_43",
"git-switch_45",
"git-switch_47",
"git-switch_49",
"git-switch_51",
"git-switch_53"
],
[
"git-switch_3",
"git-switch_4",
"git-switch_5",
"git-switch_6"
]
]
} |
3275 | switch to a branch and update all submodules to match | git switch --recurse-submodules {{branch_name}} | [
"git-switch_2",
"git-switch_3",
"git-switch_13",
"git-switch_15",
"git-switch_18",
"git-switch_23",
"git-switch_33",
"git-switch_34",
"git-switch_36",
"git-switch_38",
"git-switch_40",
"git-switch_42",
"git-switch_44",
"git-switch_45",
"git-switch_47",
"git-switch_49",
"git-switch_51",
"git-switch_53"
] | git-switch | git-switch | true | {
"token": [
"git",
"switch",
"--recurse-submodules",
"|main|"
],
"oracle_man": [
[
"git-switch_2",
"git-switch_13",
"git-switch_15",
"git-switch_18",
"git-switch_33",
"git-switch_36",
"git-switch_38",
"git-switch_40",
"git-switch_42",
"git-switch_45",
"git-switch_47",
"git-switch_49",
"git-switch_51",
"git-switch_53"
],
[
"git-switch_2",
"git-switch_18",
"git-switch_33",
"git-switch_36",
"git-switch_38",
"git-switch_40",
"git-switch_42",
"git-switch_44",
"git-switch_45",
"git-switch_47",
"git-switch_49",
"git-switch_51",
"git-switch_53"
],
[
"git-switch_23",
"git-switch_34"
],
[
"git-switch_3",
"git-switch_4",
"git-switch_5",
"git-switch_6"
]
]
} |
3276 | switch to a branch and automatically merge the current branch and any uncommitted changes into it | git switch --merge {{branch_name}} | [
"git-switch_2",
"git-switch_3",
"git-switch_5",
"git-switch_13",
"git-switch_15",
"git-switch_18",
"git-switch_24",
"git-switch_26",
"git-switch_33",
"git-switch_36",
"git-switch_38",
"git-switch_40",
"git-switch_42",
"git-switch_44",
"git-switch_45",
"git-switch_47",
"git-switch_49",
"git-switch_51",
"git-switch_53"
] | git-switch | git-switch | true | {
"token": [
"git",
"switch",
"--merge",
"|main|"
],
"oracle_man": [
[
"git-switch_2",
"git-switch_13",
"git-switch_15",
"git-switch_18",
"git-switch_33",
"git-switch_36",
"git-switch_38",
"git-switch_40",
"git-switch_42",
"git-switch_45",
"git-switch_47",
"git-switch_49",
"git-switch_51",
"git-switch_53"
],
[
"git-switch_2",
"git-switch_18",
"git-switch_33",
"git-switch_36",
"git-switch_38",
"git-switch_40",
"git-switch_42",
"git-switch_44",
"git-switch_45",
"git-switch_47",
"git-switch_49",
"git-switch_51",
"git-switch_53"
],
[
"git-switch_5",
"git-switch_24",
"git-switch_26"
],
[
"git-switch_3",
"git-switch_4",
"git-switch_5",
"git-switch_6"
]
]
} |
3277 | search for a pattern within a file | egrep "{{search_pattern}}" {{path/to/file}} | [
"egrep_3"
] | egrep | egrep | true | {
"token": [
"|main|"
],
"oracle_man": [
[
"egrep_3",
"egrep_4",
"egrep_5"
]
]
} |
3278 | search for a pattern within multiple files | egrep "{{search_pattern}}" {{path/to/file1}} {{path/to/file2}} {{path/to/file3}} | [
"egrep_3"
] | egrep | egrep | true | {
"token": [
"|main|"
],
"oracle_man": [
[
"egrep_3",
"egrep_4",
"egrep_5"
]
]
} |
3279 | search stdin for a pattern | cat {{path/to/file}} | egrep {{search_pattern}} | [
"egrep_3"
] | egrep | egrep | true | {
"token": [
"cat",
"|main|"
],
"oracle_man": [
[],
[
"egrep_3",
"egrep_4",
"egrep_5"
]
]
} |
3280 | print file name and line number for each match | egrep --with-filename --line-number "{{search_pattern}}" {{path/to/file}} | [
"egrep_3",
"egrep_29",
"egrep_32"
] | egrep | egrep | true | {
"token": [
"--with-filename",
"--line-number",
"|main|"
],
"oracle_man": [
[
"egrep_29"
],
[
"egrep_32"
],
[
"egrep_3",
"egrep_4",
"egrep_5"
]
]
} |
3281 | search for a pattern in all files recursively in a directory, ignoring binary files | egrep --recursive --binary-files={{without-match}} "{{search_pattern}}" {{path/to/directory}} | [
"egrep_3",
"egrep_40",
"egrep_41",
"egrep_52",
"egrep_54",
"egrep_57"
] | egrep | egrep | true | {
"token": [
"--recursive",
"--binary-files",
"|main|"
],
"oracle_man": [
[
"egrep_54"
],
[
"egrep_40",
"egrep_41",
"egrep_52",
"egrep_57"
],
[
"egrep_3",
"egrep_4",
"egrep_5"
]
]
} |
3282 | search for lines that do not match a pattern | egrep --invert-match "{{search_pattern}}" {{path/to/file}} | [
"egrep_3",
"egrep_16",
"egrep_20",
"egrep_24"
] | egrep | egrep | true | {
"token": [
"--invert-match",
"|main|"
],
"oracle_man": [
[
"egrep_16",
"egrep_20",
"egrep_24"
],
[
"egrep_3",
"egrep_4",
"egrep_5"
]
]
} |
3306 | render a commonmark markdown file to html | cmark --to html {{filename.md}} | [
"cmark_3",
"cmark_4"
] | cmark | cmark | true | {
"token": [
"--to",
"html",
"|main|"
],
"oracle_man": [
[
"cmark_4"
],
[],
[
"cmark_3"
]
]
} |
3307 | convert data from standard input to latex | cmark --to latex | [
"cmark_3",
"cmark_4"
] | cmark | cmark | true | {
"token": [
"--to",
"latex",
"|main|"
],
"oracle_man": [
[
"cmark_4"
],
[],
[
"cmark_3"
]
]
} |
3308 | convert straight quotes to smart quotes | cmark --smart --to html {{filename.md}} | [
"cmark_3",
"cmark_4",
"cmark_10"
] | cmark | cmark | true | {
"token": [
"--smart",
"--to",
"html",
"|main|"
],
"oracle_man": [
[
"cmark_10"
],
[
"cmark_4"
],
[],
[
"cmark_3"
]
]
} |
3309 | validate utf8 characters | cmark --validate-utf8 {{filename.md}} | [
"cmark_3",
"cmark_9"
] | cmark | cmark | true | {
"token": [
"--validate-utf8",
"|main|"
],
"oracle_man": [
[
"cmark_9"
],
[
"cmark_3"
]
]
} |
3310 | build and view the default package documentation in the browser | cargo doc --open | [
"cargo-doc_2",
"cargo-doc_3",
"cargo-doc_4",
"cargo-doc_59"
] | cargo-doc | cargo-doc | true | {
"token": [
"cargo",
"doc",
"--open",
"|main|"
],
"oracle_man": [
[
"cargo-doc_2",
"cargo-doc_59"
],
[
"cargo-doc_2",
"cargo-doc_59"
],
[
"cargo-doc_4"
],
[
"cargo-doc_3"
]
]
} |
3311 | build documentation without accessing the network | cargo doc --offline | [
"cargo-doc_2",
"cargo-doc_3",
"cargo-doc_49",
"cargo-doc_59"
] | cargo-doc | cargo-doc | true | {
"token": [
"cargo",
"doc",
"--offline",
"|main|"
],
"oracle_man": [
[
"cargo-doc_2",
"cargo-doc_59"
],
[
"cargo-doc_2",
"cargo-doc_59"
],
[
"cargo-doc_49"
],
[
"cargo-doc_3"
]
]
} |
3312 | view a particular package's documentation | cargo doc --open --package {{package}} | [
"cargo-doc_2",
"cargo-doc_3",
"cargo-doc_4",
"cargo-doc_9",
"cargo-doc_59"
] | cargo-doc | cargo-doc | true | {
"token": [
"cargo",
"doc",
"--open",
"--package",
"|main|"
],
"oracle_man": [
[
"cargo-doc_2",
"cargo-doc_59"
],
[
"cargo-doc_2",
"cargo-doc_59"
],
[
"cargo-doc_4"
],
[
"cargo-doc_9"
],
[
"cargo-doc_3"
]
]
} |
3313 | view a particular package's documentation offline | cargo doc --open --offline --package {{package}} | [
"cargo-doc_2",
"cargo-doc_3",
"cargo-doc_4",
"cargo-doc_9",
"cargo-doc_49",
"cargo-doc_59"
] | cargo-doc | cargo-doc | true | {
"token": [
"cargo",
"doc",
"--open",
"--offline",
"--package",
"|main|"
],
"oracle_man": [
[
"cargo-doc_2",
"cargo-doc_59"
],
[
"cargo-doc_2",
"cargo-doc_59"
],
[
"cargo-doc_4"
],
[
"cargo-doc_49"
],
[
"cargo-doc_9"
],
[
"cargo-doc_3"
]
]
} |
3314 | call the first target specified in the makefile (usually named "all") | make | [
"make_3"
] | make | make | true | {
"token": [
"|main|"
],
"oracle_man": [
[
"make_3",
"make_4",
"make_5",
"make_6",
"make_7",
"make_8",
"make_9",
"make_10"
]
]
} |
3315 | call a specific target | make {{target}} | [
"make_3"
] | make | make | true | {
"token": [
"|main|"
],
"oracle_man": [
[
"make_3",
"make_4",
"make_5",
"make_6",
"make_7",
"make_8",
"make_9",
"make_10"
]
]
} |
3316 | call a specific target, executing 4 jobs at a time in parallel | make -j{{4}} {{target}} | [
"make_3"
] | make | make | true | {
"token": [
"|main|"
],
"oracle_man": [
[
"make_3",
"make_4",
"make_5",
"make_6",
"make_7",
"make_8",
"make_9",
"make_10"
]
]
} |
3317 | use a specific makefile | make --file {{file}} | [
"make_3",
"make_18"
] | make | make | true | {
"token": [
"--file",
"|main|"
],
"oracle_man": [
[
"make_18"
],
[
"make_3",
"make_4",
"make_5",
"make_6",
"make_7",
"make_8",
"make_9",
"make_10"
]
]
} |
3318 | execute make from another directory | make --directory {{directory}} | [
"make_3",
"make_13"
] | make | make | true | {
"token": [
"--directory",
"|main|"
],
"oracle_man": [
[
"make_13"
],
[
"make_3",
"make_4",
"make_5",
"make_6",
"make_7",
"make_8",
"make_9",
"make_10"
]
]
} |
3319 | force making of a target, even if source files are unchanged | make --always-make {{target}} | [
"make_3",
"make_12"
] | make | make | true | {
"token": [
"--always-make",
"|main|"
],
"oracle_man": [
[
"make_12"
],
[
"make_3",
"make_4",
"make_5",
"make_6",
"make_7",
"make_8",
"make_9",
"make_10"
]
]
} |
3320 | override variables defined in the makefile by the environment | make --environment-overrides {{target}} | [
"make_3",
"make_16"
] | make | make | true | {
"token": [
"--environment-overrides",
"|main|"
],
"oracle_man": [
[
"make_16"
],
[
"make_3",
"make_4",
"make_5",
"make_6",
"make_7",
"make_8",
"make_9",
"make_10"
]
]
} |
3321 | make a simple get request | lwp-request -m GET {{http://example.com/some/path}} | [
"lwp-request_2",
"lwp-request_3",
"lwp-request_5"
] | lwp-request | lwp-request | true | {
"token": [
"-m",
"GET",
"|main|"
],
"oracle_man": [
[
"lwp-request_2",
"lwp-request_5"
],
[],
[
"lwp-request_3",
"lwp-request_4",
"lwp-request_5",
"lwp-request_6",
"lwp-request_7",
"lwp-request_8",
"lwp-request_9",
"lwp-request_10",
"lwp-request_11",
"lwp-request_12",
"lwp-request_13",
"lwp-request_14",
"lwp-request_15",
"lwp-request_16",
"lwp-request_17",
"lwp-request_18",
"lwp-request_19",
"lwp-request_20",
"lwp-request_21",
"lwp-request_22",
"lwp-request_23",
"lwp-request_24",
"lwp-request_25",
"lwp-request_26",
"lwp-request_27",
"lwp-request_28",
"lwp-request_29",
"lwp-request_30",
"lwp-request_31",
"lwp-request_32"
]
]
} |
3322 | upload a file with a post request | lwp-request -m POST {{http://example.com/some/path}} < {{path/to/file}} | [
"lwp-request_2",
"lwp-request_3",
"lwp-request_5"
] | lwp-request | lwp-request | true | {
"token": [
"-m",
"POST",
"|main|"
],
"oracle_man": [
[
"lwp-request_2",
"lwp-request_5"
],
[],
[
"lwp-request_3",
"lwp-request_4",
"lwp-request_5",
"lwp-request_6",
"lwp-request_7",
"lwp-request_8",
"lwp-request_9",
"lwp-request_10",
"lwp-request_11",
"lwp-request_12",
"lwp-request_13",
"lwp-request_14",
"lwp-request_15",
"lwp-request_16",
"lwp-request_17",
"lwp-request_18",
"lwp-request_19",
"lwp-request_20",
"lwp-request_21",
"lwp-request_22",
"lwp-request_23",
"lwp-request_24",
"lwp-request_25",
"lwp-request_26",
"lwp-request_27",
"lwp-request_28",
"lwp-request_29",
"lwp-request_30",
"lwp-request_31",
"lwp-request_32"
]
]
} |
3323 | make a request with a custom user agent | lwp-request -H 'User-Agent: {{user_agent}} -m {{METHOD}} {{http://example.com/some/path}} | [
"lwp-request_2",
"lwp-request_3",
"lwp-request_5",
"lwp-request_13",
"lwp-request_14"
] | lwp-request | lwp-request | true | {
"token": [
"-H",
"User-Agent:",
"-m",
"|main|"
],
"oracle_man": [
[
"lwp-request_13",
"lwp-request_14"
],
[],
[
"lwp-request_2",
"lwp-request_5"
],
[
"lwp-request_3",
"lwp-request_4",
"lwp-request_5",
"lwp-request_6",
"lwp-request_7",
"lwp-request_8",
"lwp-request_9",
"lwp-request_10",
"lwp-request_11",
"lwp-request_12",
"lwp-request_13",
"lwp-request_14",
"lwp-request_15",
"lwp-request_16",
"lwp-request_17",
"lwp-request_18",
"lwp-request_19",
"lwp-request_20",
"lwp-request_21",
"lwp-request_22",
"lwp-request_23",
"lwp-request_24",
"lwp-request_25",
"lwp-request_26",
"lwp-request_27",
"lwp-request_28",
"lwp-request_29",
"lwp-request_30",
"lwp-request_31",
"lwp-request_32"
]
]
} |
3324 | make a request with http authentication | lwp-request -C {{username}}:{{password}} -m {{METHOD}} {{http://example.com/some/path}} | [
"lwp-request_2",
"lwp-request_3",
"lwp-request_5",
"lwp-request_15"
] | lwp-request | lwp-request | true | {
"token": [
"-C",
"-m",
"|main|"
],
"oracle_man": [
[
"lwp-request_2",
"lwp-request_15"
],
[
"lwp-request_2",
"lwp-request_5"
],
[
"lwp-request_3",
"lwp-request_4",
"lwp-request_5",
"lwp-request_6",
"lwp-request_7",
"lwp-request_8",
"lwp-request_9",
"lwp-request_10",
"lwp-request_11",
"lwp-request_12",
"lwp-request_13",
"lwp-request_14",
"lwp-request_15",
"lwp-request_16",
"lwp-request_17",
"lwp-request_18",
"lwp-request_19",
"lwp-request_20",
"lwp-request_21",
"lwp-request_22",
"lwp-request_23",
"lwp-request_24",
"lwp-request_25",
"lwp-request_26",
"lwp-request_27",
"lwp-request_28",
"lwp-request_29",
"lwp-request_30",
"lwp-request_31",
"lwp-request_32"
]
]
} |
3325 | make a request and print request headers | lwp-request -U -m {{METHOD}} {{http://example.com/some/path}} | [
"lwp-request_2",
"lwp-request_3",
"lwp-request_5",
"lwp-request_18"
] | lwp-request | lwp-request | true | {
"token": [
"-U",
"-m",
"|main|"
],
"oracle_man": [
[
"lwp-request_18"
],
[
"lwp-request_2",
"lwp-request_5"
],
[
"lwp-request_3",
"lwp-request_4",
"lwp-request_5",
"lwp-request_6",
"lwp-request_7",
"lwp-request_8",
"lwp-request_9",
"lwp-request_10",
"lwp-request_11",
"lwp-request_12",
"lwp-request_13",
"lwp-request_14",
"lwp-request_15",
"lwp-request_16",
"lwp-request_17",
"lwp-request_18",
"lwp-request_19",
"lwp-request_20",
"lwp-request_21",
"lwp-request_22",
"lwp-request_23",
"lwp-request_24",
"lwp-request_25",
"lwp-request_26",
"lwp-request_27",
"lwp-request_28",
"lwp-request_29",
"lwp-request_30",
"lwp-request_31",
"lwp-request_32"
]
]
} |
3326 | make a request and print response headers and status chain | lwp-request -E -m {{METHOD}} {{http://example.com/some/path}} | [
"lwp-request_2",
"lwp-request_3",
"lwp-request_5",
"lwp-request_22"
] | lwp-request | lwp-request | true | {
"token": [
"-E",
"-m",
"|main|"
],
"oracle_man": [
[
"lwp-request_22"
],
[
"lwp-request_2",
"lwp-request_5"
],
[
"lwp-request_3",
"lwp-request_4",
"lwp-request_5",
"lwp-request_6",
"lwp-request_7",
"lwp-request_8",
"lwp-request_9",
"lwp-request_10",
"lwp-request_11",
"lwp-request_12",
"lwp-request_13",
"lwp-request_14",
"lwp-request_15",
"lwp-request_16",
"lwp-request_17",
"lwp-request_18",
"lwp-request_19",
"lwp-request_20",
"lwp-request_21",
"lwp-request_22",
"lwp-request_23",
"lwp-request_24",
"lwp-request_25",
"lwp-request_26",
"lwp-request_27",
"lwp-request_28",
"lwp-request_29",
"lwp-request_30",
"lwp-request_31",
"lwp-request_32"
]
]
} |
3327 | list only local configuration entries (stored in `.git/config` in the current repository) | git config --list --local | [
"git-config_2",
"git-config_3",
"git-config_6",
"git-config_7",
"git-config_11",
"git-config_12",
"git-config_30",
"git-config_33",
"git-config_42",
"git-config_44",
"git-config_55",
"git-config_64",
"git-config_65",
"git-config_72",
"git-config_74",
"git-config_77",
"git-config_80",
"git-config_82",
"git-config_84",
"git-config_86",
"git-config_88",
"git-config_90",
"git-config_92",
"git-config_94",
"git-config_98",
"git-config_117",
"git-config_152",
"git-config_416",
"git-config_417",
"git-config_418",
"git-config_419",
"git-config_420",
"git-config_485",
"git-config_852",
"git-config_853",
"git-config_854",
"git-config_885",
"git-config_924",
"git-config_968",
"git-config_1006",
"git-config_1008",
"git-config_1057"
] | git-config | git-config | true | {
"token": [
"git",
"config",
"--list",
"--local",
"|main|"
],
"oracle_man": [
[
"git-config_2",
"git-config_44",
"git-config_65",
"git-config_72",
"git-config_74",
"git-config_77",
"git-config_80",
"git-config_82",
"git-config_84",
"git-config_86",
"git-config_88",
"git-config_90",
"git-config_92",
"git-config_94",
"git-config_98",
"git-config_117",
"git-config_152",
"git-config_416",
"git-config_417",
"git-config_418",
"git-config_419",
"git-config_420",
"git-config_852",
"git-config_853",
"git-config_854",
"git-config_885",
"git-config_924"
],
[
"git-config_2",
"git-config_11",
"git-config_12",
"git-config_64",
"git-config_72",
"git-config_74",
"git-config_77",
"git-config_80",
"git-config_82",
"git-config_84",
"git-config_86",
"git-config_88",
"git-config_90",
"git-config_92",
"git-config_94",
"git-config_98",
"git-config_485",
"git-config_885",
"git-config_924",
"git-config_968",
"git-config_1008"
],
[
"git-config_2",
"git-config_42",
"git-config_55",
"git-config_64"
],
[
"git-config_6",
"git-config_7",
"git-config_30",
"git-config_33",
"git-config_1006",
"git-config_1057"
],
[
"git-config_3",
"git-config_4",
"git-config_5",
"git-config_6",
"git-config_7",
"git-config_8",
"git-config_9",
"git-config_10",
"git-config_11",
"git-config_12",
"git-config_13",
"git-config_14",
"git-config_15",
"git-config_16",
"git-config_17"
]
]
} |
3328 | list only global configuration entries (stored in `~/.gitconfig`) | git config --list --global | [
"git-config_2",
"git-config_3",
"git-config_6",
"git-config_7",
"git-config_11",
"git-config_12",
"git-config_24",
"git-config_42",
"git-config_44",
"git-config_55",
"git-config_61",
"git-config_62",
"git-config_64",
"git-config_65",
"git-config_72",
"git-config_74",
"git-config_77",
"git-config_80",
"git-config_82",
"git-config_84",
"git-config_86",
"git-config_88",
"git-config_90",
"git-config_92",
"git-config_94",
"git-config_98",
"git-config_117",
"git-config_152",
"git-config_416",
"git-config_417",
"git-config_418",
"git-config_419",
"git-config_420",
"git-config_485",
"git-config_852",
"git-config_853",
"git-config_854",
"git-config_885",
"git-config_924",
"git-config_968",
"git-config_1008"
] | git-config | git-config | true | {
"token": [
"git",
"config",
"--list",
"--global",
"|main|"
],
"oracle_man": [
[
"git-config_2",
"git-config_44",
"git-config_65",
"git-config_72",
"git-config_74",
"git-config_77",
"git-config_80",
"git-config_82",
"git-config_84",
"git-config_86",
"git-config_88",
"git-config_90",
"git-config_92",
"git-config_94",
"git-config_98",
"git-config_117",
"git-config_152",
"git-config_416",
"git-config_417",
"git-config_418",
"git-config_419",
"git-config_420",
"git-config_852",
"git-config_853",
"git-config_854",
"git-config_885",
"git-config_924"
],
[
"git-config_2",
"git-config_11",
"git-config_12",
"git-config_64",
"git-config_72",
"git-config_74",
"git-config_77",
"git-config_80",
"git-config_82",
"git-config_84",
"git-config_86",
"git-config_88",
"git-config_90",
"git-config_92",
"git-config_94",
"git-config_98",
"git-config_485",
"git-config_885",
"git-config_924",
"git-config_968",
"git-config_1008"
],
[
"git-config_2",
"git-config_42",
"git-config_55",
"git-config_64"
],
[
"git-config_6",
"git-config_7",
"git-config_24",
"git-config_61",
"git-config_62"
],
[
"git-config_3",
"git-config_4",
"git-config_5",
"git-config_6",
"git-config_7",
"git-config_8",
"git-config_9",
"git-config_10",
"git-config_11",
"git-config_12",
"git-config_13",
"git-config_14",
"git-config_15",
"git-config_16",
"git-config_17"
]
]
} |
3329 | list all configuration entries that have been defined either locally or globally | git config --list | [
"git-config_2",
"git-config_3",
"git-config_11",
"git-config_12",
"git-config_42",
"git-config_44",
"git-config_55",
"git-config_64",
"git-config_65",
"git-config_72",
"git-config_74",
"git-config_77",
"git-config_80",
"git-config_82",
"git-config_84",
"git-config_86",
"git-config_88",
"git-config_90",
"git-config_92",
"git-config_94",
"git-config_98",
"git-config_117",
"git-config_152",
"git-config_416",
"git-config_417",
"git-config_418",
"git-config_419",
"git-config_420",
"git-config_485",
"git-config_852",
"git-config_853",
"git-config_854",
"git-config_885",
"git-config_924",
"git-config_968",
"git-config_1008"
] | git-config | git-config | true | {
"token": [
"git",
"config",
"--list",
"|main|"
],
"oracle_man": [
[
"git-config_2",
"git-config_44",
"git-config_65",
"git-config_72",
"git-config_74",
"git-config_77",
"git-config_80",
"git-config_82",
"git-config_84",
"git-config_86",
"git-config_88",
"git-config_90",
"git-config_92",
"git-config_94",
"git-config_98",
"git-config_117",
"git-config_152",
"git-config_416",
"git-config_417",
"git-config_418",
"git-config_419",
"git-config_420",
"git-config_852",
"git-config_853",
"git-config_854",
"git-config_885",
"git-config_924"
],
[
"git-config_2",
"git-config_11",
"git-config_12",
"git-config_64",
"git-config_72",
"git-config_74",
"git-config_77",
"git-config_80",
"git-config_82",
"git-config_84",
"git-config_86",
"git-config_88",
"git-config_90",
"git-config_92",
"git-config_94",
"git-config_98",
"git-config_485",
"git-config_885",
"git-config_924",
"git-config_968",
"git-config_1008"
],
[
"git-config_2",
"git-config_42",
"git-config_55",
"git-config_64"
],
[
"git-config_3",
"git-config_4",
"git-config_5",
"git-config_6",
"git-config_7",
"git-config_8",
"git-config_9",
"git-config_10",
"git-config_11",
"git-config_12",
"git-config_13",
"git-config_14",
"git-config_15",
"git-config_16",
"git-config_17"
]
]
} |
3330 | get the value of a given configuration entry | git config alias.unstage | [
"git-config_2",
"git-config_3",
"git-config_11",
"git-config_12",
"git-config_44",
"git-config_64",
"git-config_65",
"git-config_72",
"git-config_74",
"git-config_77",
"git-config_80",
"git-config_82",
"git-config_84",
"git-config_86",
"git-config_88",
"git-config_90",
"git-config_92",
"git-config_94",
"git-config_98",
"git-config_117",
"git-config_152",
"git-config_416",
"git-config_417",
"git-config_418",
"git-config_419",
"git-config_420",
"git-config_485",
"git-config_852",
"git-config_853",
"git-config_854",
"git-config_885",
"git-config_924",
"git-config_968",
"git-config_1008"
] | git-config | git-config | true | {
"token": [
"git",
"config",
"alias.unstage",
"|main|"
],
"oracle_man": [
[
"git-config_2",
"git-config_44",
"git-config_65",
"git-config_72",
"git-config_74",
"git-config_77",
"git-config_80",
"git-config_82",
"git-config_84",
"git-config_86",
"git-config_88",
"git-config_90",
"git-config_92",
"git-config_94",
"git-config_98",
"git-config_117",
"git-config_152",
"git-config_416",
"git-config_417",
"git-config_418",
"git-config_419",
"git-config_420",
"git-config_852",
"git-config_853",
"git-config_854",
"git-config_885",
"git-config_924"
],
[
"git-config_2",
"git-config_11",
"git-config_12",
"git-config_64",
"git-config_72",
"git-config_74",
"git-config_77",
"git-config_80",
"git-config_82",
"git-config_84",
"git-config_86",
"git-config_88",
"git-config_90",
"git-config_92",
"git-config_94",
"git-config_98",
"git-config_485",
"git-config_885",
"git-config_924",
"git-config_968",
"git-config_1008"
],
[],
[
"git-config_3",
"git-config_4",
"git-config_5",
"git-config_6",
"git-config_7",
"git-config_8",
"git-config_9",
"git-config_10",
"git-config_11",
"git-config_12",
"git-config_13",
"git-config_14",
"git-config_15",
"git-config_16",
"git-config_17"
]
]
} |
3331 | set the global value of a given configuration entry | git config --global alias.unstage "reset HEAD --" | [
"git-config_2",
"git-config_3",
"git-config_4",
"git-config_5",
"git-config_6",
"git-config_7",
"git-config_11",
"git-config_12",
"git-config_17",
"git-config_18",
"git-config_19",
"git-config_20",
"git-config_21",
"git-config_22",
"git-config_23",
"git-config_24",
"git-config_27",
"git-config_30",
"git-config_33",
"git-config_34",
"git-config_37",
"git-config_38",
"git-config_39",
"git-config_40",
"git-config_41",
"git-config_42",
"git-config_43",
"git-config_44",
"git-config_52",
"git-config_53",
"git-config_54",
"git-config_55",
"git-config_56",
"git-config_57",
"git-config_58",
"git-config_59",
"git-config_60",
"git-config_61",
"git-config_62",
"git-config_63",
"git-config_64",
"git-config_65",
"git-config_72",
"git-config_74",
"git-config_77",
"git-config_80",
"git-config_82",
"git-config_84",
"git-config_86",
"git-config_88",
"git-config_90",
"git-config_92",
"git-config_94",
"git-config_96",
"git-config_98",
"git-config_117",
"git-config_145",
"git-config_152",
"git-config_168",
"git-config_172",
"git-config_226",
"git-config_231",
"git-config_267",
"git-config_287",
"git-config_292",
"git-config_296",
"git-config_297",
"git-config_298",
"git-config_299",
"git-config_300",
"git-config_303",
"git-config_306",
"git-config_309",
"git-config_311",
"git-config_317",
"git-config_320",
"git-config_321",
"git-config_325",
"git-config_330",
"git-config_331",
"git-config_334",
"git-config_338",
"git-config_342",
"git-config_343",
"git-config_344",
"git-config_351",
"git-config_354",
"git-config_355",
"git-config_356",
"git-config_357",
"git-config_358",
"git-config_369",
"git-config_386",
"git-config_392",
"git-config_402",
"git-config_403",
"git-config_405",
"git-config_406",
"git-config_410",
"git-config_412",
"git-config_414",
"git-config_416",
"git-config_417",
"git-config_418",
"git-config_419",
"git-config_420",
"git-config_436",
"git-config_476",
"git-config_477",
"git-config_478",
"git-config_485",
"git-config_496",
"git-config_500",
"git-config_501",
"git-config_502",
"git-config_505",
"git-config_506",
"git-config_507",
"git-config_508",
"git-config_510",
"git-config_512",
"git-config_518",
"git-config_519",
"git-config_522",
"git-config_523",
"git-config_524",
"git-config_526",
"git-config_544",
"git-config_545",
"git-config_546",
"git-config_547",
"git-config_548",
"git-config_549",
"git-config_550",
"git-config_552",
"git-config_553",
"git-config_555",
"git-config_556",
"git-config_557",
"git-config_559",
"git-config_560",
"git-config_563",
"git-config_579",
"git-config_580",
"git-config_581",
"git-config_583",
"git-config_584",
"git-config_585",
"git-config_636",
"git-config_637",
"git-config_701",
"git-config_714",
"git-config_715",
"git-config_716",
"git-config_717",
"git-config_718",
"git-config_719",
"git-config_720",
"git-config_721",
"git-config_722",
"git-config_724",
"git-config_725",
"git-config_727",
"git-config_730",
"git-config_731",
"git-config_734",
"git-config_735",
"git-config_736",
"git-config_737",
"git-config_738",
"git-config_744",
"git-config_745",
"git-config_755",
"git-config_757",
"git-config_799",
"git-config_800",
"git-config_830",
"git-config_835",
"git-config_843",
"git-config_844",
"git-config_852",
"git-config_853",
"git-config_854",
"git-config_860",
"git-config_862",
"git-config_878",
"git-config_879",
"git-config_880",
"git-config_885",
"git-config_887",
"git-config_888",
"git-config_892",
"git-config_893",
"git-config_894",
"git-config_901",
"git-config_902",
"git-config_905",
"git-config_906",
"git-config_907",
"git-config_911",
"git-config_924",
"git-config_934",
"git-config_937",
"git-config_938",
"git-config_939",
"git-config_941",
"git-config_942",
"git-config_948",
"git-config_949",
"git-config_953",
"git-config_960",
"git-config_961",
"git-config_968",
"git-config_976",
"git-config_977",
"git-config_978",
"git-config_987",
"git-config_988",
"git-config_994",
"git-config_995",
"git-config_996",
"git-config_997",
"git-config_1000",
"git-config_1004",
"git-config_1005",
"git-config_1006",
"git-config_1008",
"git-config_1038",
"git-config_1043",
"git-config_1049",
"git-config_1057",
"git-config_1063"
] | git-config | git-config | true | {
"token": [
"git",
"config",
"--global",
"alias.unstage",
"reset",
"HEAD",
"--",
"|main|"
],
"oracle_man": [
[
"git-config_2",
"git-config_44",
"git-config_65",
"git-config_72",
"git-config_74",
"git-config_77",
"git-config_80",
"git-config_82",
"git-config_84",
"git-config_86",
"git-config_88",
"git-config_90",
"git-config_92",
"git-config_94",
"git-config_98",
"git-config_117",
"git-config_152",
"git-config_416",
"git-config_417",
"git-config_418",
"git-config_419",
"git-config_420",
"git-config_852",
"git-config_853",
"git-config_854",
"git-config_885",
"git-config_924"
],
[
"git-config_2",
"git-config_11",
"git-config_12",
"git-config_64",
"git-config_72",
"git-config_74",
"git-config_77",
"git-config_80",
"git-config_82",
"git-config_84",
"git-config_86",
"git-config_88",
"git-config_90",
"git-config_92",
"git-config_94",
"git-config_98",
"git-config_485",
"git-config_885",
"git-config_924",
"git-config_968",
"git-config_1008"
],
[
"git-config_6",
"git-config_7",
"git-config_24",
"git-config_61",
"git-config_62"
],
[],
[
"git-config_953"
],
[
"git-config_417",
"git-config_419"
],
[
"git-config_2",
"git-config_4",
"git-config_5",
"git-config_6",
"git-config_7",
"git-config_17",
"git-config_18",
"git-config_19",
"git-config_20",
"git-config_21",
"git-config_22",
"git-config_23",
"git-config_24",
"git-config_27",
"git-config_30",
"git-config_33",
"git-config_34",
"git-config_37",
"git-config_38",
"git-config_39",
"git-config_40",
"git-config_41",
"git-config_42",
"git-config_43",
"git-config_44",
"git-config_52",
"git-config_53",
"git-config_54",
"git-config_55",
"git-config_56",
"git-config_57",
"git-config_58",
"git-config_59",
"git-config_60",
"git-config_61",
"git-config_62",
"git-config_63",
"git-config_64",
"git-config_77",
"git-config_80",
"git-config_84",
"git-config_86",
"git-config_88",
"git-config_94",
"git-config_96",
"git-config_98",
"git-config_145",
"git-config_152",
"git-config_168",
"git-config_172",
"git-config_226",
"git-config_231",
"git-config_267",
"git-config_287",
"git-config_292",
"git-config_296",
"git-config_297",
"git-config_298",
"git-config_299",
"git-config_300",
"git-config_303",
"git-config_306",
"git-config_309",
"git-config_311",
"git-config_317",
"git-config_320",
"git-config_321",
"git-config_325",
"git-config_330",
"git-config_331",
"git-config_334",
"git-config_338",
"git-config_342",
"git-config_343",
"git-config_344",
"git-config_351",
"git-config_354",
"git-config_355",
"git-config_356",
"git-config_357",
"git-config_358",
"git-config_369",
"git-config_386",
"git-config_392",
"git-config_402",
"git-config_403",
"git-config_405",
"git-config_406",
"git-config_410",
"git-config_412",
"git-config_414",
"git-config_418",
"git-config_420",
"git-config_436",
"git-config_476",
"git-config_477",
"git-config_478",
"git-config_496",
"git-config_500",
"git-config_501",
"git-config_502",
"git-config_505",
"git-config_506",
"git-config_507",
"git-config_508",
"git-config_510",
"git-config_512",
"git-config_518",
"git-config_519",
"git-config_522",
"git-config_523",
"git-config_524",
"git-config_526",
"git-config_544",
"git-config_545",
"git-config_546",
"git-config_547",
"git-config_548",
"git-config_549",
"git-config_550",
"git-config_552",
"git-config_553",
"git-config_555",
"git-config_556",
"git-config_557",
"git-config_559",
"git-config_560",
"git-config_563",
"git-config_579",
"git-config_580",
"git-config_581",
"git-config_583",
"git-config_584",
"git-config_585",
"git-config_636",
"git-config_637",
"git-config_701",
"git-config_714",
"git-config_715",
"git-config_716",
"git-config_717",
"git-config_718",
"git-config_719",
"git-config_720",
"git-config_721",
"git-config_722",
"git-config_724",
"git-config_725",
"git-config_727",
"git-config_730",
"git-config_731",
"git-config_734",
"git-config_735",
"git-config_736",
"git-config_737",
"git-config_738",
"git-config_744",
"git-config_745",
"git-config_755",
"git-config_757",
"git-config_799",
"git-config_800",
"git-config_830",
"git-config_835",
"git-config_843",
"git-config_844",
"git-config_860",
"git-config_862",
"git-config_878",
"git-config_879",
"git-config_880",
"git-config_887",
"git-config_888",
"git-config_892",
"git-config_893",
"git-config_894",
"git-config_901",
"git-config_902",
"git-config_905",
"git-config_906",
"git-config_907",
"git-config_911",
"git-config_924",
"git-config_934",
"git-config_937",
"git-config_938",
"git-config_939",
"git-config_941",
"git-config_942",
"git-config_948",
"git-config_949",
"git-config_953",
"git-config_960",
"git-config_961",
"git-config_976",
"git-config_977",
"git-config_978",
"git-config_987",
"git-config_988",
"git-config_994",
"git-config_995",
"git-config_996",
"git-config_997",
"git-config_1000",
"git-config_1004",
"git-config_1005",
"git-config_1006",
"git-config_1038",
"git-config_1043",
"git-config_1049",
"git-config_1057",
"git-config_1063"
],
[
"git-config_3",
"git-config_4",
"git-config_5",
"git-config_6",
"git-config_7",
"git-config_8",
"git-config_9",
"git-config_10",
"git-config_11",
"git-config_12",
"git-config_13",
"git-config_14",
"git-config_15",
"git-config_16",
"git-config_17"
]
]
} |
3332 | revert a global configuration entry to its default value | git config --global --unset alias.unstage | [
"git-config_2",
"git-config_3",
"git-config_6",
"git-config_7",
"git-config_11",
"git-config_12",
"git-config_24",
"git-config_40",
"git-config_41",
"git-config_44",
"git-config_61",
"git-config_62",
"git-config_64",
"git-config_65",
"git-config_72",
"git-config_74",
"git-config_77",
"git-config_80",
"git-config_82",
"git-config_84",
"git-config_86",
"git-config_88",
"git-config_90",
"git-config_92",
"git-config_94",
"git-config_98",
"git-config_117",
"git-config_152",
"git-config_416",
"git-config_417",
"git-config_418",
"git-config_419",
"git-config_420",
"git-config_485",
"git-config_852",
"git-config_853",
"git-config_854",
"git-config_885",
"git-config_924",
"git-config_968",
"git-config_1008"
] | git-config | git-config | true | {
"token": [
"git",
"config",
"--global",
"--unset",
"alias.unstage",
"|main|"
],
"oracle_man": [
[
"git-config_2",
"git-config_44",
"git-config_65",
"git-config_72",
"git-config_74",
"git-config_77",
"git-config_80",
"git-config_82",
"git-config_84",
"git-config_86",
"git-config_88",
"git-config_90",
"git-config_92",
"git-config_94",
"git-config_98",
"git-config_117",
"git-config_152",
"git-config_416",
"git-config_417",
"git-config_418",
"git-config_419",
"git-config_420",
"git-config_852",
"git-config_853",
"git-config_854",
"git-config_885",
"git-config_924"
],
[
"git-config_2",
"git-config_11",
"git-config_12",
"git-config_64",
"git-config_72",
"git-config_74",
"git-config_77",
"git-config_80",
"git-config_82",
"git-config_84",
"git-config_86",
"git-config_88",
"git-config_90",
"git-config_92",
"git-config_94",
"git-config_98",
"git-config_485",
"git-config_885",
"git-config_924",
"git-config_968",
"git-config_1008"
],
[
"git-config_6",
"git-config_7",
"git-config_24",
"git-config_61",
"git-config_62"
],
[
"git-config_2",
"git-config_40",
"git-config_41",
"git-config_77"
],
[],
[
"git-config_3",
"git-config_4",
"git-config_5",
"git-config_6",
"git-config_7",
"git-config_8",
"git-config_9",
"git-config_10",
"git-config_11",
"git-config_12",
"git-config_13",
"git-config_14",
"git-config_15",
"git-config_16",
"git-config_17"
]
]
} |
3333 | edit the git configuration for the current repository in the default editor | git config --edit | [
"git-config_2",
"git-config_3",
"git-config_11",
"git-config_12",
"git-config_44",
"git-config_61",
"git-config_64",
"git-config_65",
"git-config_72",
"git-config_74",
"git-config_77",
"git-config_80",
"git-config_82",
"git-config_84",
"git-config_86",
"git-config_88",
"git-config_90",
"git-config_92",
"git-config_94",
"git-config_98",
"git-config_117",
"git-config_152",
"git-config_320",
"git-config_416",
"git-config_417",
"git-config_418",
"git-config_419",
"git-config_420",
"git-config_485",
"git-config_852",
"git-config_853",
"git-config_854",
"git-config_885",
"git-config_894",
"git-config_924",
"git-config_968",
"git-config_1008"
] | git-config | git-config | true | {
"token": [
"git",
"config",
"--edit",
"|main|"
],
"oracle_man": [
[
"git-config_2",
"git-config_44",
"git-config_65",
"git-config_72",
"git-config_74",
"git-config_77",
"git-config_80",
"git-config_82",
"git-config_84",
"git-config_86",
"git-config_88",
"git-config_90",
"git-config_92",
"git-config_94",
"git-config_98",
"git-config_117",
"git-config_152",
"git-config_416",
"git-config_417",
"git-config_418",
"git-config_419",
"git-config_420",
"git-config_852",
"git-config_853",
"git-config_854",
"git-config_885",
"git-config_924"
],
[
"git-config_2",
"git-config_11",
"git-config_12",
"git-config_64",
"git-config_72",
"git-config_74",
"git-config_77",
"git-config_80",
"git-config_82",
"git-config_84",
"git-config_86",
"git-config_88",
"git-config_90",
"git-config_92",
"git-config_94",
"git-config_98",
"git-config_485",
"git-config_885",
"git-config_924",
"git-config_968",
"git-config_1008"
],
[
"git-config_2",
"git-config_61",
"git-config_320",
"git-config_894"
],
[
"git-config_3",
"git-config_4",
"git-config_5",
"git-config_6",
"git-config_7",
"git-config_8",
"git-config_9",
"git-config_10",
"git-config_11",
"git-config_12",
"git-config_13",
"git-config_14",
"git-config_15",
"git-config_16",
"git-config_17"
]
]
} |
3334 | edit the global git configuration in the default editor | git config --global --edit | [
"git-config_2",
"git-config_3",
"git-config_6",
"git-config_7",
"git-config_11",
"git-config_12",
"git-config_24",
"git-config_44",
"git-config_61",
"git-config_62",
"git-config_64",
"git-config_65",
"git-config_72",
"git-config_74",
"git-config_77",
"git-config_80",
"git-config_82",
"git-config_84",
"git-config_86",
"git-config_88",
"git-config_90",
"git-config_92",
"git-config_94",
"git-config_98",
"git-config_117",
"git-config_152",
"git-config_320",
"git-config_416",
"git-config_417",
"git-config_418",
"git-config_419",
"git-config_420",
"git-config_485",
"git-config_852",
"git-config_853",
"git-config_854",
"git-config_885",
"git-config_894",
"git-config_924",
"git-config_968",
"git-config_1008"
] | git-config | git-config | true | {
"token": [
"git",
"config",
"--global",
"--edit",
"|main|"
],
"oracle_man": [
[
"git-config_2",
"git-config_44",
"git-config_65",
"git-config_72",
"git-config_74",
"git-config_77",
"git-config_80",
"git-config_82",
"git-config_84",
"git-config_86",
"git-config_88",
"git-config_90",
"git-config_92",
"git-config_94",
"git-config_98",
"git-config_117",
"git-config_152",
"git-config_416",
"git-config_417",
"git-config_418",
"git-config_419",
"git-config_420",
"git-config_852",
"git-config_853",
"git-config_854",
"git-config_885",
"git-config_924"
],
[
"git-config_2",
"git-config_11",
"git-config_12",
"git-config_64",
"git-config_72",
"git-config_74",
"git-config_77",
"git-config_80",
"git-config_82",
"git-config_84",
"git-config_86",
"git-config_88",
"git-config_90",
"git-config_92",
"git-config_94",
"git-config_98",
"git-config_485",
"git-config_885",
"git-config_924",
"git-config_968",
"git-config_1008"
],
[
"git-config_6",
"git-config_7",
"git-config_24",
"git-config_61",
"git-config_62"
],
[
"git-config_2",
"git-config_61",
"git-config_320",
"git-config_894"
],
[
"git-config_3",
"git-config_4",
"git-config_5",
"git-config_6",
"git-config_7",
"git-config_8",
"git-config_9",
"git-config_10",
"git-config_11",
"git-config_12",
"git-config_13",
"git-config_14",
"git-config_15",
"git-config_16",
"git-config_17"
]
]
} |
3344 | ping the specified url | httping -g {{url}} | [
"httping_3",
"httping_4",
"httping_17",
"httping_18",
"httping_49",
"httping_69",
"httping_71",
"httping_73",
"httping_74"
] | httping | httping | true | {
"token": [
"-g",
"|main|"
],
"oracle_man": [
[
"httping_3",
"httping_17",
"httping_18",
"httping_49",
"httping_69",
"httping_71",
"httping_73",
"httping_74"
],
[
"httping_4"
]
]
} |
3345 | ping the web server on `host` and `port` | httping -h {{host}} -p {{port}} | [
"httping_3",
"httping_4",
"httping_18",
"httping_25",
"httping_26",
"httping_28",
"httping_48",
"httping_50",
"httping_53",
"httping_55",
"httping_57",
"httping_58",
"httping_59",
"httping_72"
] | httping | httping | true | {
"token": [
"-h",
"-p",
"|main|"
],
"oracle_man": [
[
"httping_3",
"httping_18",
"httping_28",
"httping_50",
"httping_53",
"httping_72"
],
[
"httping_3",
"httping_25",
"httping_26",
"httping_28",
"httping_48",
"httping_55",
"httping_57",
"httping_58",
"httping_59",
"httping_72"
],
[
"httping_4"
]
]
} |
3346 | ping the web server on `host` using a tls connection | httping -l -g https://{{host}} | [
"httping_3",
"httping_4",
"httping_17",
"httping_18",
"httping_23",
"httping_49",
"httping_61",
"httping_65",
"httping_69",
"httping_71",
"httping_73",
"httping_74"
] | httping | httping | true | {
"token": [
"-l",
"-g",
"|main|"
],
"oracle_man": [
[
"httping_3",
"httping_23",
"httping_49",
"httping_61",
"httping_65",
"httping_69",
"httping_73"
],
[
"httping_3",
"httping_17",
"httping_18",
"httping_49",
"httping_69",
"httping_71",
"httping_73",
"httping_74"
],
[
"httping_4"
]
]
} |
3347 | ping the web server on `host` using http basic authentication | httping -g http://{{host}} -U {{username}} -P {{password}} | [
"httping_3",
"httping_4",
"httping_17",
"httping_18",
"httping_37",
"httping_49",
"httping_69",
"httping_71",
"httping_73",
"httping_74"
] | httping | httping | true | {
"token": [
"-g",
"-U",
"-P",
"|main|"
],
"oracle_man": [
[
"httping_3",
"httping_17",
"httping_18",
"httping_49",
"httping_69",
"httping_71",
"httping_73",
"httping_74"
],
[
"httping_37",
"httping_74"
],
[
"httping_37",
"httping_74"
],
[
"httping_4"
]
]
} |
3365 | start the daemon | auditd | [
"auditd_3"
] | auditd | auditd | true | {
"token": [
"|main|"
],
"oracle_man": [
[
"auditd_3"
]
]
} |
3366 | start the daemon in debug mode | auditd -d | [
"auditd_3"
] | auditd | auditd | true | {
"token": [
"-d",
"|main|"
],
"oracle_man": [
[],
[
"auditd_3"
]
]
} |
3367 | start the daemon ondemand from launchd | auditd -l | [
"auditd_2",
"auditd_3",
"auditd_5"
] | auditd | auditd | true | {
"token": [
"-l",
"|main|"
],
"oracle_man": [
[
"auditd_2",
"auditd_5"
],
[
"auditd_3"
]
]
} |
3376 | list all jvm processes | jps | [
"jps_5"
] | jps | jps | true | {
"token": [
"|main|"
],
"oracle_man": [
[
"jps_5",
"jps_6",
"jps_7",
"jps_8",
"jps_9",
"jps_10"
]
]
} |
3377 | list all jvm processes with only pid | jps -q | [
"jps_5",
"jps_12"
] | jps | jps | true | {
"token": [
"-q",
"|main|"
],
"oracle_man": [
[
"jps_12"
],
[
"jps_5",
"jps_6",
"jps_7",
"jps_8",
"jps_9",
"jps_10"
]
]
} |
3378 | display the arguments passed to the processes | jps -m | [
"jps_5",
"jps_13",
"jps_39",
"jps_40"
] | jps | jps | true | {
"token": [
"-m",
"|main|"
],
"oracle_man": [
[
"jps_13",
"jps_39",
"jps_40"
],
[
"jps_5",
"jps_6",
"jps_7",
"jps_8",
"jps_9",
"jps_10"
]
]
} |
3379 | display the full package name of all processes | jps -l | [
"jps_3",
"jps_5",
"jps_14",
"jps_34",
"jps_35"
] | jps | jps | true | {
"token": [
"-l",
"|main|"
],
"oracle_man": [
[
"jps_3",
"jps_14",
"jps_34",
"jps_35"
],
[
"jps_5",
"jps_6",
"jps_7",
"jps_8",
"jps_9",
"jps_10"
]
]
} |
3380 | display the arguments passed to the jvm | jps -v | [
"jps_5",
"jps_15"
] | jps | jps | true | {
"token": [
"-v",
"|main|"
],
"oracle_man": [
[
"jps_15"
],
[
"jps_5",
"jps_6",
"jps_7",
"jps_8",
"jps_9",
"jps_10"
]
]
} |
3381 | start mytop | mytop | [
"mytop_17"
] | mytop | mytop | true | {
"token": [
"|main|"
],
"oracle_man": [
[
"mytop_17",
"mytop_18",
"mytop_19",
"mytop_20",
"mytop_21",
"mytop_22",
"mytop_23",
"mytop_24",
"mytop_25",
"mytop_26",
"mytop_27",
"mytop_28",
"mytop_29",
"mytop_30",
"mytop_31",
"mytop_32",
"mytop_33",
"mytop_34",
"mytop_35",
"mytop_36",
"mytop_37",
"mytop_38",
"mytop_39",
"mytop_40",
"mytop_41",
"mytop_42",
"mytop_43",
"mytop_44",
"mytop_45",
"mytop_46",
"mytop_47",
"mytop_48",
"mytop_49",
"mytop_50",
"mytop_51",
"mytop_52",
"mytop_53",
"mytop_54",
"mytop_55",
"mytop_56",
"mytop_57",
"mytop_58",
"mytop_59",
"mytop_60",
"mytop_61",
"mytop_62",
"mytop_63",
"mytop_64",
"mytop_65",
"mytop_66",
"mytop_67",
"mytop_68",
"mytop_69",
"mytop_70",
"mytop_71",
"mytop_72",
"mytop_73",
"mytop_74",
"mytop_75",
"mytop_76",
"mytop_77",
"mytop_78",
"mytop_79",
"mytop_80",
"mytop_81",
"mytop_82",
"mytop_83"
]
]
} |
3382 | connect with a specified username and password | mytop -u {{user}} -p {{password}} | [
"mytop_12",
"mytop_17",
"mytop_35",
"mytop_36",
"mytop_38",
"mytop_52"
] | mytop | mytop | true | {
"token": [
"-u",
"-p",
"|main|"
],
"oracle_man": [
[
"mytop_35"
],
[
"mytop_12",
"mytop_36",
"mytop_38",
"mytop_52"
],
[
"mytop_17",
"mytop_18",
"mytop_19",
"mytop_20",
"mytop_21",
"mytop_22",
"mytop_23",
"mytop_24",
"mytop_25",
"mytop_26",
"mytop_27",
"mytop_28",
"mytop_29",
"mytop_30",
"mytop_31",
"mytop_32",
"mytop_33",
"mytop_34",
"mytop_35",
"mytop_36",
"mytop_37",
"mytop_38",
"mytop_39",
"mytop_40",
"mytop_41",
"mytop_42",
"mytop_43",
"mytop_44",
"mytop_45",
"mytop_46",
"mytop_47",
"mytop_48",
"mytop_49",
"mytop_50",
"mytop_51",
"mytop_52",
"mytop_53",
"mytop_54",
"mytop_55",
"mytop_56",
"mytop_57",
"mytop_58",
"mytop_59",
"mytop_60",
"mytop_61",
"mytop_62",
"mytop_63",
"mytop_64",
"mytop_65",
"mytop_66",
"mytop_67",
"mytop_68",
"mytop_69",
"mytop_70",
"mytop_71",
"mytop_72",
"mytop_73",
"mytop_74",
"mytop_75",
"mytop_76",
"mytop_77",
"mytop_78",
"mytop_79",
"mytop_80",
"mytop_81",
"mytop_82",
"mytop_83"
]
]
} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.