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 |
---|---|---|---|---|---|---|---|
8298 | change the owner user and group of a file/directory | chown {{user}}:{{group}} {{path/to/file_or_directory}} | [
"chown_3"
] | chown | chown | true | {
"token": [
"|main|"
],
"oracle_man": [
[
"chown_3"
]
]
} |
8299 | recursively change the owner of a directory and its contents | chown -R {{user}} {{path/to/directory}} | [
"chown_3",
"chown_14",
"chown_15"
] | chown | chown | true | {
"token": [
"-R",
"|main|"
],
"oracle_man": [
[
"chown_14",
"chown_15"
],
[
"chown_3"
]
]
} |
8300 | change the owner of a symbolic link | chown -h {{user}} {{path/to/symlink}} | [
"chown_3",
"chown_9",
"chown_19",
"chown_24"
] | chown | chown | true | {
"token": [
"-h",
"|main|"
],
"oracle_man": [
[
"chown_9",
"chown_19",
"chown_24"
],
[
"chown_3"
]
]
} |
8301 | change the owner of a file/directory to match a reference file | chown --reference={{path/to/reference_file}} {{path/to/file_or_directory}} | [
"chown_2",
"chown_3",
"chown_4",
"chown_13"
] | chown | chown | true | {
"token": [
"--reference",
"|main|"
],
"oracle_man": [
[
"chown_2",
"chown_4",
"chown_13"
],
[
"chown_3"
]
]
} |
8309 | start runit's 3stage init scheme | runit | [
"runit_3"
] | runit | runit | true | {
"token": [
"|main|"
],
"oracle_man": [
[
"runit_3",
"runit_4",
"runit_5",
"runit_6",
"runit_7"
]
]
} |
8310 | shut down runit | kill --CONT {{runit_pid}} | [
"runit_3"
] | runit | runit | true | {
"token": [
"kill",
"--CONT",
"|main|"
],
"oracle_man": [
[],
[],
[
"runit_3",
"runit_4",
"runit_5",
"runit_6",
"runit_7"
]
]
} |
8329 | start mitmproxy with default settings | mitmproxy | [
"mitmproxy_3"
] | mitmproxy | mitmproxy | true | {
"token": [
"|main|"
],
"oracle_man": [
[
"mitmproxy_3"
]
]
} |
8330 | start mitmproxy bound to custom address and port | mitmproxy -b {{ip_address}} -p {{port}} | [
"mitmproxy_3",
"mitmproxy_14",
"mitmproxy_21",
"mitmproxy_24",
"mitmproxy_25",
"mitmproxy_33",
"mitmproxy_37",
"mitmproxy_55",
"mitmproxy_61",
"mitmproxy_63",
"mitmproxy_64"
] | mitmproxy | mitmproxy | true | {
"token": [
"-b",
"-p",
"|main|"
],
"oracle_man": [
[
"mitmproxy_14",
"mitmproxy_21",
"mitmproxy_33"
],
[
"mitmproxy_24",
"mitmproxy_25",
"mitmproxy_37",
"mitmproxy_55",
"mitmproxy_61",
"mitmproxy_63",
"mitmproxy_64"
],
[
"mitmproxy_3"
]
]
} |
8331 | print logs from a container | docker logs {{container_name}} | [
"docker-logs_2",
"docker-logs_3",
"docker-logs_7",
"docker-logs_10"
] | docker-logs | docker-logs | true | {
"token": [
"docker",
"logs",
"|main|"
],
"oracle_man": [
[
"docker-logs_2",
"docker-logs_3"
],
[
"docker-logs_2",
"docker-logs_7",
"docker-logs_10"
],
[
"docker-logs_3"
]
]
} |
8332 | print logs and follow them | docker logs -f {{container_name}} | [
"docker-logs_2",
"docker-logs_3",
"docker-logs_5",
"docker-logs_7",
"docker-logs_10"
] | docker-logs | docker-logs | true | {
"token": [
"docker",
"logs",
"-f",
"|main|"
],
"oracle_man": [
[
"docker-logs_2",
"docker-logs_3"
],
[
"docker-logs_2",
"docker-logs_7",
"docker-logs_10"
],
[
"docker-logs_5"
],
[
"docker-logs_3"
]
]
} |
8333 | print last 5 lines | docker logs {{container_name}} --tail {{5}} | [
"docker-logs_2",
"docker-logs_3",
"docker-logs_7",
"docker-logs_8",
"docker-logs_10"
] | docker-logs | docker-logs | true | {
"token": [
"docker",
"logs",
"--tail",
"|main|"
],
"oracle_man": [
[
"docker-logs_2",
"docker-logs_3"
],
[
"docker-logs_2",
"docker-logs_7",
"docker-logs_10"
],
[
"docker-logs_8"
],
[
"docker-logs_3"
]
]
} |
8334 | print logs and append them with timestamps | docker logs -t {{container_name}} | [
"docker-logs_2",
"docker-logs_3",
"docker-logs_7",
"docker-logs_8",
"docker-logs_9",
"docker-logs_10"
] | docker-logs | docker-logs | true | {
"token": [
"docker",
"logs",
"-t",
"|main|"
],
"oracle_man": [
[
"docker-logs_2",
"docker-logs_3"
],
[
"docker-logs_2",
"docker-logs_7",
"docker-logs_10"
],
[
"docker-logs_8",
"docker-logs_9"
],
[
"docker-logs_3"
]
]
} |
8335 | print logs from a certain point in time of container execution (i.e. 23m, 10s, 20130102t132337) | docker logs {{container_name}} --until {{time}} | [
"docker-logs_2",
"docker-logs_3",
"docker-logs_7",
"docker-logs_10"
] | docker-logs | docker-logs | true | {
"token": [
"docker",
"logs",
"--until",
"|main|"
],
"oracle_man": [
[
"docker-logs_2",
"docker-logs_3"
],
[
"docker-logs_2",
"docker-logs_7",
"docker-logs_10"
],
[
"docker-logs_10"
],
[
"docker-logs_3"
]
]
} |
8336 | display the root location of the current repository | hg root | [
"hg_3",
"hg_1068",
"hg_1069",
"hg_1070",
"hg_2848"
] | hg | hg-root | true | {
"token": [
"root",
"|main|"
],
"oracle_man": [
[
"hg_1068",
"hg_1069",
"hg_1070",
"hg_2848"
],
[
"hg_3"
]
]
} |
8337 | display the root location of the specified repository | hg root --cwd {{path/to/directory}} | [
"hg_3",
"hg_9",
"hg_1068",
"hg_1069",
"hg_1070",
"hg_2413",
"hg_2848"
] | hg | hg-root | true | {
"token": [
"root",
"--cwd",
"|main|"
],
"oracle_man": [
[
"hg_1068",
"hg_1069",
"hg_1070",
"hg_2848"
],
[
"hg_9",
"hg_2413"
],
[
"hg_3"
]
]
} |
8344 | convert command output to json via pipe | {{ifconfig}} | jc {{--ifconfig}} | [
"jc_5"
] | jc | jc | true | {
"token": [
"|main|"
],
"oracle_man": [
[
"jc_5"
]
]
} |
8345 | convert command output to json via magic syntax | jc {{ifconfig}} | [
"jc_5"
] | jc | jc | true | {
"token": [
"|main|"
],
"oracle_man": [
[
"jc_5"
]
]
} |
8346 | output pretty json via pipe | {{ifconfig}} | jc {{--ifconfig}} -p | [
"jc_5",
"jc_52",
"jc_53",
"jc_54",
"jc_55",
"jc_56",
"jc_57",
"jc_58",
"jc_90",
"jc_92",
"jc_122",
"jc_125",
"jc_143",
"jc_144"
] | jc | jc | true | {
"token": [
"-p",
"|main|"
],
"oracle_man": [
[
"jc_52",
"jc_53",
"jc_54",
"jc_55",
"jc_56",
"jc_57",
"jc_58",
"jc_90",
"jc_92",
"jc_122",
"jc_125",
"jc_143",
"jc_144"
],
[
"jc_5"
]
]
} |
8347 | output pretty json via magic syntax | jc -p {{ifconfig}} | [
"jc_5",
"jc_52",
"jc_53",
"jc_54",
"jc_55",
"jc_56",
"jc_57",
"jc_58",
"jc_90",
"jc_92",
"jc_122",
"jc_125",
"jc_143",
"jc_144"
] | jc | jc | true | {
"token": [
"-p",
"|main|"
],
"oracle_man": [
[
"jc_52",
"jc_53",
"jc_54",
"jc_55",
"jc_56",
"jc_57",
"jc_58",
"jc_90",
"jc_92",
"jc_122",
"jc_125",
"jc_143",
"jc_144"
],
[
"jc_5"
]
]
} |
8348 | preview an svg | inkview {{path/to/file.svg}} | [
"inkview_6"
] | inkview | inkview | true | {
"token": [
"|main|"
],
"oracle_man": [
[
"inkview_6",
"inkview_7"
]
]
} |
8349 | preview multiple svgs (use arrow keys to navigate) | inkview {{path/to/file_a.svg}} {{path/to/file_b.svg}} {{path/to/file_c.svg}} | [
"inkview_6"
] | inkview | inkview | true | {
"token": [
"|main|"
],
"oracle_man": [
[
"inkview_6",
"inkview_7"
]
]
} |
8350 | issue a certificate using webroot mode | acme.sh --issue --domain {{example.com}} --webroot {{/path/to/webroot}} | [
"acme_2"
] | acme | acme | true | {
"token": [
"acme.sh",
"--issue",
"--domain",
"--webroot",
"|main|"
],
"oracle_man": [
[],
[],
[],
[],
[
"acme_2",
"acme_3"
]
]
} |
8351 | issue a certificate for multiple domains using standalone mode using port 80 | acme.sh --issue --standalone --domain {{example.com}} --domain {{www.example.com}} | [
"acme_2"
] | acme | acme | true | {
"token": [
"acme.sh",
"--issue",
"--standalone",
"--domain",
"|main|"
],
"oracle_man": [
[],
[],
[],
[],
[
"acme_2",
"acme_3"
]
]
} |
8352 | issue a certificate using standalone tls mode using port 443 | acme.sh --issue --alpn --domain {{example.com}} | [
"acme_2"
] | acme | acme | true | {
"token": [
"acme.sh",
"--issue",
"--alpn",
"--domain",
"|main|"
],
"oracle_man": [
[],
[],
[],
[],
[
"acme_2",
"acme_3"
]
]
} |
8353 | issue a certificate using a working nginx configuration | acme.sh --issue --nginx --domain {{example.com}} | [
"acme_2"
] | acme | acme | true | {
"token": [
"acme.sh",
"--issue",
"--nginx",
"--domain",
"|main|"
],
"oracle_man": [
[],
[],
[],
[],
[
"acme_2",
"acme_3"
]
]
} |
8354 | issue a certificate using a working apache configuration | acme.sh --issue --apache --domain {{example.com}} | [
"acme_2"
] | acme | acme | true | {
"token": [
"acme.sh",
"--issue",
"--apache",
"--domain",
"|main|"
],
"oracle_man": [
[],
[],
[],
[],
[
"acme_2",
"acme_3"
]
]
} |
8355 | issue a wildcard (\*) certificate using an automatic dns api mode | acme.sh --issue --dns {{dns_cf}} --domain {{*.example.com}} | [
"acme_2"
] | acme | acme | true | {
"token": [
"acme.sh",
"--issue",
"--dns",
"--domain",
"|main|"
],
"oracle_man": [
[],
[],
[],
[],
[
"acme_2",
"acme_3"
]
]
} |
8356 | install certificate files into the specified locations (useful for automatic certificate renewal) | acme.sh --install-cert -d {{example.com}} --key-file {{/path/to/example.com.key}} --fullchain-file {{/path/to/example.com.cer}} --reloadcmd {{"systemctl force-reload nginx"}} | [
"acme_2"
] | acme | acme | true | {
"token": [
"acme.sh",
"--install-cert",
"-d",
"--key-file",
"--fullchain-file",
"--reloadcmd",
"|main|"
],
"oracle_man": [
[],
[],
[],
[],
[],
[],
[
"acme_2",
"acme_3"
]
]
} |
8357 | pack unpacked objects in the current directory | git repack | [
"git-repack_2",
"git-repack_3",
"git-repack_28",
"git-repack_29"
] | git-repack | git-repack | true | {
"token": [
"git",
"repack",
"|main|"
],
"oracle_man": [
[
"git-repack_2",
"git-repack_28"
],
[
"git-repack_2",
"git-repack_28",
"git-repack_29"
],
[
"git-repack_3",
"git-repack_4",
"git-repack_5"
]
]
} |
8358 | also remove redundant objects after packing | git repack -d | [
"git-repack_2",
"git-repack_3",
"git-repack_6",
"git-repack_9",
"git-repack_10",
"git-repack_12",
"git-repack_16",
"git-repack_17",
"git-repack_26",
"git-repack_28",
"git-repack_29",
"git-repack_34"
] | git-repack | git-repack | true | {
"token": [
"git",
"repack",
"-d",
"|main|"
],
"oracle_man": [
[
"git-repack_2",
"git-repack_28"
],
[
"git-repack_2",
"git-repack_28",
"git-repack_29"
],
[
"git-repack_2",
"git-repack_6",
"git-repack_9",
"git-repack_10",
"git-repack_12",
"git-repack_16",
"git-repack_17",
"git-repack_26",
"git-repack_34"
],
[
"git-repack_3",
"git-repack_4",
"git-repack_5"
]
]
} |
8364 | create a black window with display id "2" | Xephyr -br -ac -noreset -screen {{800x600}} {{:2}} | [
"Xephyr_3",
"Xephyr_7",
"Xephyr_8",
"Xephyr_9",
"Xephyr_10",
"Xephyr_14"
] | Xephyr | xephyr | true | {
"token": [
"-br",
"-ac",
"-noreset",
"-screen",
"|main|"
],
"oracle_man": [
[
"Xephyr_10"
],
[
"Xephyr_9",
"Xephyr_14"
],
[],
[
"Xephyr_7",
"Xephyr_8"
],
[
"Xephyr_3",
"Xephyr_4",
"Xephyr_5"
]
]
} |
8365 | start an x application on the new screen | DISPLAY=:2 {{command_name}} | [
"Xephyr_3"
] | Xephyr | xephyr | true | {
"token": [
"DISPLAY=:2",
"|main|"
],
"oracle_man": [
[],
[
"Xephyr_3",
"Xephyr_4",
"Xephyr_5"
]
]
} |
8366 | launch josm | josm | [
"josm_3"
] | josm | josm | true | {
"token": [
"|main|"
],
"oracle_man": [
[
"josm_3",
"josm_4"
]
]
} |
8367 | launch josm in maximized mode | josm --maximize | [
"josm_3"
] | josm | josm | true | {
"token": [
"--maximize",
"|main|"
],
"oracle_man": [
[],
[
"josm_3",
"josm_4"
]
]
} |
8368 | launch josm and set a specific language | josm --language {{de}} | [
"josm_3",
"josm_16"
] | josm | josm | true | {
"token": [
"--language",
"|main|"
],
"oracle_man": [
[
"josm_16"
],
[
"josm_3",
"josm_4"
]
]
} |
8369 | launch josm and reset all preferences to their default values | josm --reset-preferences | [
"josm_3",
"josm_13"
] | josm | josm | true | {
"token": [
"--reset-preferences",
"|main|"
],
"oracle_man": [
[
"josm_13"
],
[
"josm_3",
"josm_4"
]
]
} |
8370 | launch josm and download a specific bounding box | josm --download {{minlat,minlon,maxlat,maxlon}} | [
"josm_3",
"josm_7",
"josm_8",
"josm_9",
"josm_10"
] | josm | josm | true | {
"token": [
"--download",
"|main|"
],
"oracle_man": [
[
"josm_7",
"josm_8",
"josm_9",
"josm_10"
],
[
"josm_3",
"josm_4"
]
]
} |
8371 | launch josm and download a specific bounding box as raw gps | josm --downloadgps {{minlat,minlon,maxlat,maxlon}} | [
"josm_3",
"josm_10"
] | josm | josm | true | {
"token": [
"--downloadgps",
"|main|"
],
"oracle_man": [
[
"josm_10"
],
[
"josm_3",
"josm_4"
]
]
} |
8372 | launch josm without plugins | josm --skip-plugins | [
"josm_3"
] | josm | josm | true | {
"token": [
"--skip-plugins",
"|main|"
],
"oracle_man": [
[],
[
"josm_3",
"josm_4"
]
]
} |
8373 | view last logins, their duration and other information as read from `/var/log/wtmp` | last | [
"last_4"
] | last | last | true | {
"token": [
"|main|"
],
"oracle_man": [
[
"last_4",
"last_5",
"last_6",
"last_7"
]
]
} |
8374 | specify how many of the last logins to show | last -n {{login_count}} | [
"last_4",
"last_13",
"last_15"
] | last | last | true | {
"token": [
"-n",
"|main|"
],
"oracle_man": [
[
"last_13",
"last_15"
],
[
"last_4",
"last_5",
"last_6",
"last_7"
]
]
} |
8375 | print the full date and time for entries and then display the hostname column last to prevent truncation | last -F -a | [
"last_4",
"last_8",
"last_11"
] | last | last | true | {
"token": [
"-F",
"-a",
"|main|"
],
"oracle_man": [
[
"last_11"
],
[
"last_8"
],
[
"last_4",
"last_5",
"last_6",
"last_7"
]
]
} |
8376 | view all logins by a specific user and show the ip address instead of the hostname | last {{username}} -i | [
"last_4",
"last_12"
] | last | last | true | {
"token": [
"-i",
"|main|"
],
"oracle_man": [
[
"last_12"
],
[
"last_4",
"last_5",
"last_6",
"last_7"
]
]
} |
8377 | view all recorded reboots (i.e., the last logins of the pseudo user "reboot") | last reboot | [
"last_4"
] | last | last | true | {
"token": [
"reboot",
"|main|"
],
"oracle_man": [
[],
[
"last_4",
"last_5",
"last_6",
"last_7"
]
]
} |
8378 | view all recorded shutdowns (i.e., the last logins of the pseudo user "shutdown") | last shutdown | [
"last_4"
] | last | last | true | {
"token": [
"shutdown",
"|main|"
],
"oracle_man": [
[],
[
"last_4",
"last_5",
"last_6",
"last_7"
]
]
} |
8379 | commit staged files to the repository | hg commit | [
"hg_3",
"hg_266",
"hg_267",
"hg_271",
"hg_279",
"hg_280",
"hg_281",
"hg_282",
"hg_284",
"hg_327",
"hg_363",
"hg_1349",
"hg_1388",
"hg_1529",
"hg_1763",
"hg_1765",
"hg_1771",
"hg_1775",
"hg_1778",
"hg_1780",
"hg_2239",
"hg_2284",
"hg_2456",
"hg_2653",
"hg_2897",
"hg_3002",
"hg_3114",
"hg_3229",
"hg_3387",
"hg_4105",
"hg_4156"
] | hg | hg-commit | true | {
"token": [
"commit",
"|main|"
],
"oracle_man": [
[
"hg_266",
"hg_267",
"hg_271",
"hg_279",
"hg_280",
"hg_281",
"hg_282",
"hg_284",
"hg_327",
"hg_363",
"hg_1349",
"hg_1388",
"hg_1529",
"hg_1763",
"hg_1765",
"hg_1771",
"hg_1775",
"hg_1778",
"hg_1780",
"hg_2239",
"hg_2284",
"hg_2456",
"hg_2653",
"hg_2897",
"hg_3002",
"hg_3114",
"hg_3229",
"hg_3387",
"hg_4105",
"hg_4156"
],
[
"hg_3"
]
]
} |
8380 | commit a specific file or directory | hg commit {{path/to/file_or_directory}} | [
"hg_3",
"hg_266",
"hg_267",
"hg_271",
"hg_279",
"hg_280",
"hg_281",
"hg_282",
"hg_284",
"hg_327",
"hg_363",
"hg_1349",
"hg_1388",
"hg_1529",
"hg_1763",
"hg_1765",
"hg_1771",
"hg_1775",
"hg_1778",
"hg_1780",
"hg_2239",
"hg_2284",
"hg_2456",
"hg_2653",
"hg_2897",
"hg_3002",
"hg_3114",
"hg_3229",
"hg_3387",
"hg_4105",
"hg_4156"
] | hg | hg-commit | true | {
"token": [
"commit",
"|main|"
],
"oracle_man": [
[
"hg_266",
"hg_267",
"hg_271",
"hg_279",
"hg_280",
"hg_281",
"hg_282",
"hg_284",
"hg_327",
"hg_363",
"hg_1349",
"hg_1388",
"hg_1529",
"hg_1763",
"hg_1765",
"hg_1771",
"hg_1775",
"hg_1778",
"hg_1780",
"hg_2239",
"hg_2284",
"hg_2456",
"hg_2653",
"hg_2897",
"hg_3002",
"hg_3114",
"hg_3229",
"hg_3387",
"hg_4105",
"hg_4156"
],
[
"hg_3"
]
]
} |
8381 | commit with a specific message | hg commit --message {{message}} | [
"hg_3",
"hg_266",
"hg_267",
"hg_271",
"hg_279",
"hg_280",
"hg_281",
"hg_282",
"hg_284",
"hg_295",
"hg_327",
"hg_335",
"hg_363",
"hg_506",
"hg_1096",
"hg_1318",
"hg_1349",
"hg_1353",
"hg_1388",
"hg_1529",
"hg_1763",
"hg_1765",
"hg_1771",
"hg_1775",
"hg_1778",
"hg_1780",
"hg_2239",
"hg_2284",
"hg_2456",
"hg_2653",
"hg_2778",
"hg_2897",
"hg_3002",
"hg_3004",
"hg_3114",
"hg_3229",
"hg_3231",
"hg_3319",
"hg_3387",
"hg_3671",
"hg_3682",
"hg_3695",
"hg_3715",
"hg_3726",
"hg_3840",
"hg_4105",
"hg_4156",
"hg_4181",
"hg_4221",
"hg_4511"
] | hg | hg-commit | true | {
"token": [
"commit",
"--message",
"|main|"
],
"oracle_man": [
[
"hg_266",
"hg_267",
"hg_271",
"hg_279",
"hg_280",
"hg_281",
"hg_282",
"hg_284",
"hg_327",
"hg_363",
"hg_1349",
"hg_1388",
"hg_1529",
"hg_1763",
"hg_1765",
"hg_1771",
"hg_1775",
"hg_1778",
"hg_1780",
"hg_2239",
"hg_2284",
"hg_2456",
"hg_2653",
"hg_2897",
"hg_3002",
"hg_3114",
"hg_3229",
"hg_3387",
"hg_4105",
"hg_4156"
],
[
"hg_295",
"hg_335",
"hg_506",
"hg_1096",
"hg_1318",
"hg_1353",
"hg_2778",
"hg_3004",
"hg_3231",
"hg_3319",
"hg_3671",
"hg_3682",
"hg_3695",
"hg_3715",
"hg_3726",
"hg_3840",
"hg_4181",
"hg_4221",
"hg_4511"
],
[
"hg_3"
]
]
} |
8382 | commit all files matching a specified pattern | hg commit --include {{pattern}} | [
"hg_3",
"hg_266",
"hg_267",
"hg_271",
"hg_279",
"hg_280",
"hg_281",
"hg_282",
"hg_284",
"hg_293",
"hg_327",
"hg_333",
"hg_363",
"hg_550",
"hg_588",
"hg_604",
"hg_649",
"hg_685",
"hg_835",
"hg_873",
"hg_892",
"hg_923",
"hg_942",
"hg_949",
"hg_958",
"hg_983",
"hg_1001",
"hg_1018",
"hg_1045",
"hg_1064",
"hg_1101",
"hg_1148",
"hg_1236",
"hg_1349",
"hg_1388",
"hg_1529",
"hg_1763",
"hg_1765",
"hg_1771",
"hg_1773",
"hg_1775",
"hg_1778",
"hg_1780",
"hg_2239",
"hg_2284",
"hg_2456",
"hg_2653",
"hg_2700",
"hg_2776",
"hg_2897",
"hg_2944",
"hg_3002",
"hg_3114",
"hg_3180",
"hg_3229",
"hg_3355",
"hg_3387",
"hg_3528",
"hg_3542",
"hg_3550",
"hg_3669",
"hg_3680",
"hg_3693",
"hg_3713",
"hg_3894",
"hg_4105",
"hg_4156",
"hg_4219",
"hg_4349",
"hg_4509"
] | hg | hg-commit | true | {
"token": [
"commit",
"--include",
"|main|"
],
"oracle_man": [
[
"hg_266",
"hg_267",
"hg_271",
"hg_279",
"hg_280",
"hg_281",
"hg_282",
"hg_284",
"hg_327",
"hg_363",
"hg_1349",
"hg_1388",
"hg_1529",
"hg_1763",
"hg_1765",
"hg_1771",
"hg_1775",
"hg_1778",
"hg_1780",
"hg_2239",
"hg_2284",
"hg_2456",
"hg_2653",
"hg_2897",
"hg_3002",
"hg_3114",
"hg_3229",
"hg_3387",
"hg_4105",
"hg_4156"
],
[
"hg_280",
"hg_293",
"hg_333",
"hg_550",
"hg_588",
"hg_604",
"hg_649",
"hg_685",
"hg_835",
"hg_873",
"hg_892",
"hg_923",
"hg_942",
"hg_949",
"hg_958",
"hg_983",
"hg_1001",
"hg_1018",
"hg_1045",
"hg_1064",
"hg_1101",
"hg_1148",
"hg_1236",
"hg_1773",
"hg_2700",
"hg_2776",
"hg_2944",
"hg_3180",
"hg_3355",
"hg_3528",
"hg_3542",
"hg_3550",
"hg_3669",
"hg_3680",
"hg_3693",
"hg_3713",
"hg_3894",
"hg_4219",
"hg_4349",
"hg_4509"
],
[
"hg_3"
]
]
} |
8383 | commit all files, excluding those that match a specified pattern | hg commit --exclude {{pattern}} | [
"hg_3",
"hg_266",
"hg_267",
"hg_271",
"hg_279",
"hg_280",
"hg_281",
"hg_282",
"hg_284",
"hg_294",
"hg_327",
"hg_334",
"hg_363",
"hg_551",
"hg_589",
"hg_605",
"hg_650",
"hg_686",
"hg_836",
"hg_874",
"hg_893",
"hg_924",
"hg_943",
"hg_959",
"hg_984",
"hg_1002",
"hg_1019",
"hg_1046",
"hg_1065",
"hg_1102",
"hg_1149",
"hg_1237",
"hg_1349",
"hg_1388",
"hg_1529",
"hg_1763",
"hg_1765",
"hg_1771",
"hg_1775",
"hg_1778",
"hg_1780",
"hg_2239",
"hg_2284",
"hg_2456",
"hg_2653",
"hg_2701",
"hg_2777",
"hg_2897",
"hg_2945",
"hg_3002",
"hg_3114",
"hg_3181",
"hg_3229",
"hg_3356",
"hg_3387",
"hg_3529",
"hg_3543",
"hg_3551",
"hg_3670",
"hg_3680",
"hg_3694",
"hg_3714",
"hg_3895",
"hg_4105",
"hg_4156",
"hg_4220",
"hg_4350",
"hg_4510"
] | hg | hg-commit | true | {
"token": [
"commit",
"--exclude",
"|main|"
],
"oracle_man": [
[
"hg_266",
"hg_267",
"hg_271",
"hg_279",
"hg_280",
"hg_281",
"hg_282",
"hg_284",
"hg_327",
"hg_363",
"hg_1349",
"hg_1388",
"hg_1529",
"hg_1763",
"hg_1765",
"hg_1771",
"hg_1775",
"hg_1778",
"hg_1780",
"hg_2239",
"hg_2284",
"hg_2456",
"hg_2653",
"hg_2897",
"hg_3002",
"hg_3114",
"hg_3229",
"hg_3387",
"hg_4105",
"hg_4156"
],
[
"hg_282",
"hg_294",
"hg_334",
"hg_551",
"hg_589",
"hg_605",
"hg_650",
"hg_686",
"hg_836",
"hg_874",
"hg_893",
"hg_924",
"hg_943",
"hg_959",
"hg_984",
"hg_1002",
"hg_1019",
"hg_1046",
"hg_1065",
"hg_1102",
"hg_1149",
"hg_1237",
"hg_2701",
"hg_2777",
"hg_2945",
"hg_3181",
"hg_3356",
"hg_3529",
"hg_3543",
"hg_3551",
"hg_3670",
"hg_3680",
"hg_3694",
"hg_3714",
"hg_3895",
"hg_4220",
"hg_4350",
"hg_4510"
],
[
"hg_3"
]
]
} |
8384 | commit using the interactive mode | hg commit --interactive | [
"hg_3",
"hg_266",
"hg_267",
"hg_271",
"hg_279",
"hg_280",
"hg_281",
"hg_282",
"hg_284",
"hg_292",
"hg_327",
"hg_363",
"hg_941",
"hg_1063",
"hg_1099",
"hg_1171",
"hg_1175",
"hg_1349",
"hg_1388",
"hg_1529",
"hg_1762",
"hg_1763",
"hg_1765",
"hg_1771",
"hg_1775",
"hg_1778",
"hg_1780",
"hg_2239",
"hg_2284",
"hg_2456",
"hg_2653",
"hg_2695",
"hg_2772",
"hg_2897",
"hg_3002",
"hg_3114",
"hg_3229",
"hg_3387",
"hg_3668",
"hg_4105",
"hg_4156",
"hg_4187",
"hg_4198"
] | hg | hg-commit | true | {
"token": [
"commit",
"--interactive",
"|main|"
],
"oracle_man": [
[
"hg_266",
"hg_267",
"hg_271",
"hg_279",
"hg_280",
"hg_281",
"hg_282",
"hg_284",
"hg_327",
"hg_363",
"hg_1349",
"hg_1388",
"hg_1529",
"hg_1763",
"hg_1765",
"hg_1771",
"hg_1775",
"hg_1778",
"hg_1780",
"hg_2239",
"hg_2284",
"hg_2456",
"hg_2653",
"hg_2897",
"hg_3002",
"hg_3114",
"hg_3229",
"hg_3387",
"hg_4105",
"hg_4156"
],
[
"hg_292",
"hg_941",
"hg_1063",
"hg_1099",
"hg_1171",
"hg_1175",
"hg_1762",
"hg_1771",
"hg_1775",
"hg_2695",
"hg_2772",
"hg_3668",
"hg_4187",
"hg_4198"
],
[
"hg_3"
]
]
} |
8385 | format the output of a command for a 30 characters wide display | printf "header1 header2\nbar foo\n" | column --output-width {{30}} | [
"column_3",
"column_10"
] | column | column | true | {
"token": [
"printf",
"header1",
"header2\\nbar",
"foo\\n",
"--output-width",
"|main|"
],
"oracle_man": [
[],
[],
[],
[],
[
"column_10"
],
[
"column_3",
"column_4",
"column_5",
"column_6",
"column_7"
]
]
} |
8386 | split columns automatically and autoalign them in a tabular format | printf "header1 header2\nbar foo\n" | column --table | [
"column_3",
"column_6",
"column_8",
"column_9",
"column_11",
"column_14",
"column_15",
"column_16",
"column_17",
"column_18",
"column_19",
"column_21",
"column_22",
"column_23",
"column_24",
"column_25",
"column_26",
"column_34",
"column_36"
] | column | column | true | {
"token": [
"printf",
"header1",
"header2\\nbar",
"foo\\n",
"--table",
"|main|"
],
"oracle_man": [
[],
[],
[],
[],
[
"column_6",
"column_8",
"column_9",
"column_11",
"column_14",
"column_15",
"column_16",
"column_17",
"column_18",
"column_19",
"column_21",
"column_22",
"column_23",
"column_24",
"column_25",
"column_26",
"column_34",
"column_36"
],
[
"column_3",
"column_4",
"column_5",
"column_6",
"column_7"
]
]
} |
8387 | specify the column delimiter character for the `table` option (e.g. "," for csv) (defaults to whitespace) | printf "header1,header2\nbar,foo\n" | column --table --separator {{,}} | [
"column_3",
"column_6",
"column_8",
"column_9",
"column_11",
"column_13",
"column_14",
"column_15",
"column_16",
"column_17",
"column_18",
"column_19",
"column_21",
"column_22",
"column_23",
"column_24",
"column_25",
"column_26",
"column_34",
"column_36"
] | column | column | true | {
"token": [
"printf",
"header1,header2\\nbar,foo\\n",
"--table",
"--separator",
"|main|"
],
"oracle_man": [
[],
[],
[
"column_6",
"column_8",
"column_9",
"column_11",
"column_14",
"column_15",
"column_16",
"column_17",
"column_18",
"column_19",
"column_21",
"column_22",
"column_23",
"column_24",
"column_25",
"column_26",
"column_34",
"column_36"
],
[
"column_13"
],
[
"column_3",
"column_4",
"column_5",
"column_6",
"column_7"
]
]
} |
8388 | fill rows before filling columns | printf "header1\nbar\nfoobar\n" | column --output-width {{30}} --fillrows | [
"column_3",
"column_5",
"column_10",
"column_30"
] | column | column | true | {
"token": [
"printf",
"header1\\nbar\\nfoobar\\n",
"--output-width",
"--fillrows",
"|main|"
],
"oracle_man": [
[],
[],
[
"column_10"
],
[
"column_5",
"column_30"
],
[
"column_3",
"column_4",
"column_5",
"column_6",
"column_7"
]
]
} |
8389 | list connected minions | salt '*' test.ping | [
"salt_1"
] | salt | salt | true | {
"token": [
"*",
"test.ping",
"|main|"
],
"oracle_man": [
[],
[],
[
"salt_1"
]
]
} |
8390 | execute a highstate on all connected minions | salt '*' state.highstate | [
"salt_1"
] | salt | salt | true | {
"token": [
"*",
"state.highstate",
"|main|"
],
"oracle_man": [
[],
[],
[
"salt_1"
]
]
} |
8391 | upgrade packages using the os package manager (apt, yum, brew) on a subset of minions | salt '*.example.com' pkg.upgrade | [
"salt_1"
] | salt | salt | true | {
"token": [
"*.example.com",
"pkg.upgrade",
"|main|"
],
"oracle_man": [
[],
[],
[
"salt_1"
]
]
} |
8392 | execute an arbitrary command on a particular minion | salt '{{minion_id}}' cmd.run "ls " | [
"salt_1",
"salt_6152",
"salt_9106",
"salt_12746",
"salt_19570",
"salt_33974",
"salt_38780",
"salt_39186",
"salt_48239",
"salt_52230",
"salt_55792",
"salt_110763",
"salt_115752"
] | salt | salt | true | {
"token": [
"cmd.run",
"ls",
"|main|"
],
"oracle_man": [
[],
[
"salt_6152",
"salt_9106",
"salt_12746",
"salt_19570",
"salt_33974",
"salt_38780",
"salt_39186",
"salt_48239",
"salt_52230",
"salt_55792",
"salt_110763",
"salt_115752"
],
[
"salt_1"
]
]
} |
8393 | terminate a process using the default sigterm (terminate) signal | killall {{process_name}} | [
"killall_3"
] | killall | killall | true | {
"token": [
"|main|"
],
"oracle_man": [
[
"killall_3",
"killall_4",
"killall_5",
"killall_6",
"killall_7"
]
]
} |
8394 | list available signal names (to be used without the 'sig' prefix) | killall --list | [
"killall_3",
"killall_12"
] | killall | killall | true | {
"token": [
"--list",
"|main|"
],
"oracle_man": [
[
"killall_12"
],
[
"killall_3",
"killall_4",
"killall_5",
"killall_6",
"killall_7"
]
]
} |
8395 | interactively ask for confirmation before termination | killall -i {{process_name}} | [
"killall_2",
"killall_3",
"killall_9",
"killall_11"
] | killall | killall | true | {
"token": [
"-i",
"|main|"
],
"oracle_man": [
[
"killall_2",
"killall_9",
"killall_11"
],
[
"killall_3",
"killall_4",
"killall_5",
"killall_6",
"killall_7"
]
]
} |
8396 | terminate a process using the sigint (interrupt) signal, which is the same signal sent by pressing `ctrl + c` | killall -INT {{process_name}} | [
"killall_3"
] | killall | killall | true | {
"token": [
"-INT",
"|main|"
],
"oracle_man": [
[],
[
"killall_3",
"killall_4",
"killall_5",
"killall_6",
"killall_7"
]
]
} |
8397 | force kill a process | killall -KILL {{process_name}} | [
"killall_3"
] | killall | killall | true | {
"token": [
"-KILL",
"|main|"
],
"oracle_man": [
[],
[
"killall_3",
"killall_4",
"killall_5",
"killall_6",
"killall_7"
]
]
} |
8417 | create a symbolic link to a file or directory | ln -s {{/path/to/file_or_directory}} {{path/to/symlink}} | [
"ln_5",
"ln_6",
"ln_14",
"ln_25",
"ln_26",
"ln_27",
"ln_29"
] | ln | ln | true | {
"token": [
"-s",
"|main|"
],
"oracle_man": [
[
"ln_5",
"ln_6",
"ln_14",
"ln_25",
"ln_26",
"ln_27",
"ln_29"
],
[
"ln_5",
"ln_6",
"ln_7",
"ln_8",
"ln_9",
"ln_10",
"ln_11",
"ln_12",
"ln_13",
"ln_14",
"ln_15",
"ln_16",
"ln_17",
"ln_18",
"ln_19"
]
]
} |
8418 | overwrite an existing symbolic link to point to a different file | ln -sf {{/path/to/new_file}} {{path/to/symlink}} | [
"ln_3",
"ln_4",
"ln_5",
"ln_11",
"ln_22"
] | ln | ln | true | {
"token": [
"-sf",
"|main|"
],
"oracle_man": [
[
"ln_3",
"ln_4",
"ln_11",
"ln_22"
],
[
"ln_5",
"ln_6",
"ln_7",
"ln_8",
"ln_9",
"ln_10",
"ln_11",
"ln_12",
"ln_13",
"ln_14",
"ln_15",
"ln_16",
"ln_17",
"ln_18",
"ln_19"
]
]
} |
8419 | create a hard link to a file | ln {{/path/to/file}} {{path/to/hardlink}} | [
"ln_5"
] | ln | ln | true | {
"token": [
"|main|"
],
"oracle_man": [
[
"ln_5",
"ln_6",
"ln_7",
"ln_8",
"ln_9",
"ln_10",
"ln_11",
"ln_12",
"ln_13",
"ln_14",
"ln_15",
"ln_16",
"ln_17",
"ln_18",
"ln_19"
]
]
} |
8432 | connect to an influxdb running on localhost with no credentials | influx | [
"influx_3"
] | influx | influx | true | {
"token": [
"|main|"
],
"oracle_man": [
[
"influx_3"
]
]
} |
8433 | connect with a specific username (will prompt for a password) | influx -username {{username}} -password "" | [
"influx_3",
"influx_8",
"influx_9"
] | influx | influx | true | {
"token": [
"-username",
"-password",
"|main|"
],
"oracle_man": [
[
"influx_9"
],
[
"influx_8"
],
[
"influx_3"
]
]
} |
8434 | connect to a specific host | influx -host {{hostname}} | [
"influx_3",
"influx_5"
] | influx | influx | true | {
"token": [
"-host",
"|main|"
],
"oracle_man": [
[
"influx_5"
],
[
"influx_3"
]
]
} |
8435 | use a specific database | influx -database {{database_name}} | [
"influx_3",
"influx_7"
] | influx | influx | true | {
"token": [
"-database",
"|main|"
],
"oracle_man": [
[
"influx_7"
],
[
"influx_3"
]
]
} |
8436 | execute a given command | influx -execute "{{influxql_command}}" | [
"influx_3",
"influx_11"
] | influx | influx | true | {
"token": [
"-execute",
"|main|"
],
"oracle_man": [
[
"influx_11"
],
[
"influx_3"
]
]
} |
8437 | return output in a specific format | influx -execute "{{influxql_command}}" -format {{json|csv|column}} | [
"influx_3",
"influx_11",
"influx_12"
] | influx | influx | true | {
"token": [
"-execute",
"-format",
"|main|"
],
"oracle_man": [
[
"influx_11"
],
[
"influx_12"
],
[
"influx_3"
]
]
} |
8438 | build the package or packages defined by the `cargo.toml` manifest file in the local path | cargo build | [
"cargo-build_2",
"cargo-build_3",
"cargo-build_66",
"cargo-build_68"
] | cargo-build | cargo-build | true | {
"token": [
"cargo",
"build",
"|main|"
],
"oracle_man": [
[
"cargo-build_2",
"cargo-build_66",
"cargo-build_68"
],
[
"cargo-build_2",
"cargo-build_66",
"cargo-build_68"
],
[
"cargo-build_3"
]
]
} |
8439 | build artifacts in release mode, with optimizations | cargo build --release | [
"cargo-build_2",
"cargo-build_3",
"cargo-build_31",
"cargo-build_66",
"cargo-build_68"
] | cargo-build | cargo-build | true | {
"token": [
"cargo",
"build",
"--release",
"|main|"
],
"oracle_man": [
[
"cargo-build_2",
"cargo-build_66",
"cargo-build_68"
],
[
"cargo-build_2",
"cargo-build_66",
"cargo-build_68"
],
[
"cargo-build_31",
"cargo-build_68"
],
[
"cargo-build_3"
]
]
} |
8440 | require that `cargo.lock` is up to date | cargo build --locked | [
"cargo-build_2",
"cargo-build_3",
"cargo-build_54",
"cargo-build_66",
"cargo-build_68"
] | cargo-build | cargo-build | true | {
"token": [
"cargo",
"build",
"--locked",
"|main|"
],
"oracle_man": [
[
"cargo-build_2",
"cargo-build_66",
"cargo-build_68"
],
[
"cargo-build_2",
"cargo-build_66",
"cargo-build_68"
],
[
"cargo-build_54"
],
[
"cargo-build_3"
]
]
} |
8441 | build all packages in the workspace | cargo build --workspace | [
"cargo-build_2",
"cargo-build_3",
"cargo-build_5",
"cargo-build_7",
"cargo-build_8",
"cargo-build_9",
"cargo-build_66",
"cargo-build_68"
] | cargo-build | cargo-build | true | {
"token": [
"cargo",
"build",
"--workspace",
"|main|"
],
"oracle_man": [
[
"cargo-build_2",
"cargo-build_66",
"cargo-build_68"
],
[
"cargo-build_2",
"cargo-build_66",
"cargo-build_68"
],
[
"cargo-build_5",
"cargo-build_7",
"cargo-build_8",
"cargo-build_9"
],
[
"cargo-build_3"
]
]
} |
8442 | build a specific package | cargo build --package {{package}} | [
"cargo-build_2",
"cargo-build_3",
"cargo-build_6",
"cargo-build_66",
"cargo-build_68"
] | cargo-build | cargo-build | true | {
"token": [
"cargo",
"build",
"--package",
"|main|"
],
"oracle_man": [
[
"cargo-build_2",
"cargo-build_66",
"cargo-build_68"
],
[
"cargo-build_2",
"cargo-build_66",
"cargo-build_68"
],
[
"cargo-build_6"
],
[
"cargo-build_3"
]
]
} |
8443 | build only the specified binary | cargo build --bin {{name}} | [
"cargo-build_2",
"cargo-build_3",
"cargo-build_12",
"cargo-build_14",
"cargo-build_15",
"cargo-build_22",
"cargo-build_66",
"cargo-build_68"
] | cargo-build | cargo-build | true | {
"token": [
"cargo",
"build",
"--bin",
"|main|"
],
"oracle_man": [
[
"cargo-build_2",
"cargo-build_66",
"cargo-build_68"
],
[
"cargo-build_2",
"cargo-build_66",
"cargo-build_68"
],
[
"cargo-build_12",
"cargo-build_14",
"cargo-build_15",
"cargo-build_22"
],
[
"cargo-build_3"
]
]
} |
8444 | build only the specified test target | cargo build --test {{testname}} | [
"cargo-build_2",
"cargo-build_3",
"cargo-build_12",
"cargo-build_18",
"cargo-build_19",
"cargo-build_22",
"cargo-build_66",
"cargo-build_68"
] | cargo-build | cargo-build | true | {
"token": [
"cargo",
"build",
"--test",
"|main|"
],
"oracle_man": [
[
"cargo-build_2",
"cargo-build_66",
"cargo-build_68"
],
[
"cargo-build_2",
"cargo-build_66",
"cargo-build_68"
],
[
"cargo-build_12",
"cargo-build_18",
"cargo-build_19",
"cargo-build_22"
],
[
"cargo-build_3"
]
]
} |
8445 | start a repl (interactive shell) | sbcl | [
"sbcl_2"
] | sbcl | sbcl | true | {
"token": [
"|main|"
],
"oracle_man": [
[
"sbcl_2",
"sbcl_3",
"sbcl_4"
]
]
} |
8446 | execute a lisp script | sbcl --script {{path/to/script.lisp}} | [
"sbcl_2",
"sbcl_22",
"sbcl_39",
"sbcl_40",
"sbcl_47",
"sbcl_48"
] | sbcl | sbcl | true | {
"token": [
"--script",
"|main|"
],
"oracle_man": [
[
"sbcl_22",
"sbcl_39",
"sbcl_40",
"sbcl_47",
"sbcl_48"
],
[
"sbcl_2",
"sbcl_3",
"sbcl_4"
]
]
} |
8455 | compress a file | bzip2 {{path/to/file_to_compress}} | [
"bzip2_3"
] | bzip2 | bzip2 | true | {
"token": [
"|main|"
],
"oracle_man": [
[
"bzip2_3",
"bzip2_4",
"bzip2_5",
"bzip2_6",
"bzip2_7",
"bzip2_8",
"bzip2_9",
"bzip2_10",
"bzip2_11",
"bzip2_12",
"bzip2_13",
"bzip2_14",
"bzip2_15",
"bzip2_16",
"bzip2_17",
"bzip2_18"
]
]
} |
8456 | decompress a file | bzip2 -d {{path/to/compressed_file.bz2}} | [
"bzip2_3",
"bzip2_8",
"bzip2_14",
"bzip2_20",
"bzip2_21",
"bzip2_48"
] | bzip2 | bzip2 | true | {
"token": [
"-d",
"|main|"
],
"oracle_man": [
[
"bzip2_8",
"bzip2_14",
"bzip2_20",
"bzip2_21",
"bzip2_48"
],
[
"bzip2_3",
"bzip2_4",
"bzip2_5",
"bzip2_6",
"bzip2_7",
"bzip2_8",
"bzip2_9",
"bzip2_10",
"bzip2_11",
"bzip2_12",
"bzip2_13",
"bzip2_14",
"bzip2_15",
"bzip2_16",
"bzip2_17",
"bzip2_18"
]
]
} |
8457 | decompress a file to standard output | bzip2 -dc {{path/to/compressed_file.bz2}} | [
"bzip2_3",
"bzip2_14",
"bzip2_48"
] | bzip2 | bzip2 | true | {
"token": [
"-dc",
"|main|"
],
"oracle_man": [
[
"bzip2_14",
"bzip2_48"
],
[
"bzip2_3",
"bzip2_4",
"bzip2_5",
"bzip2_6",
"bzip2_7",
"bzip2_8",
"bzip2_9",
"bzip2_10",
"bzip2_11",
"bzip2_12",
"bzip2_13",
"bzip2_14",
"bzip2_15",
"bzip2_16",
"bzip2_17",
"bzip2_18"
]
]
} |
8458 | run a project if the current directory contains a `project.godot` file, otherwise open the project manager | godot | [
"godot_3"
] | godot | godot | true | {
"token": [
"|main|"
],
"oracle_man": [
[
"godot_3",
"godot_4",
"godot_5",
"godot_6",
"godot_7",
"godot_8",
"godot_9",
"godot_10",
"godot_11",
"godot_12",
"godot_13",
"godot_14",
"godot_15",
"godot_16",
"godot_17",
"godot_18",
"godot_19",
"godot_20",
"godot_21",
"godot_22",
"godot_23",
"godot_24",
"godot_25",
"godot_26",
"godot_27",
"godot_28",
"godot_29",
"godot_30",
"godot_31",
"godot_32",
"godot_33",
"godot_34",
"godot_35",
"godot_36",
"godot_37",
"godot_38",
"godot_39",
"godot_40",
"godot_41",
"godot_42",
"godot_43",
"godot_44",
"godot_45",
"godot_46",
"godot_47",
"godot_48",
"godot_49",
"godot_50",
"godot_51"
]
]
} |
8459 | edit a project (the current directory must contain a `project.godot` file) | godot -e | [
"godot_3",
"godot_8",
"godot_28",
"godot_44",
"godot_45",
"godot_46",
"godot_49"
] | godot | godot | true | {
"token": [
"-e",
"|main|"
],
"oracle_man": [
[
"godot_8",
"godot_28",
"godot_44",
"godot_45",
"godot_46",
"godot_49"
],
[
"godot_3",
"godot_4",
"godot_5",
"godot_6",
"godot_7",
"godot_8",
"godot_9",
"godot_10",
"godot_11",
"godot_12",
"godot_13",
"godot_14",
"godot_15",
"godot_16",
"godot_17",
"godot_18",
"godot_19",
"godot_20",
"godot_21",
"godot_22",
"godot_23",
"godot_24",
"godot_25",
"godot_26",
"godot_27",
"godot_28",
"godot_29",
"godot_30",
"godot_31",
"godot_32",
"godot_33",
"godot_34",
"godot_35",
"godot_36",
"godot_37",
"godot_38",
"godot_39",
"godot_40",
"godot_41",
"godot_42",
"godot_43",
"godot_44",
"godot_45",
"godot_46",
"godot_47",
"godot_48",
"godot_49",
"godot_50",
"godot_51"
]
]
} |
8460 | open the project manager even if the current directory contains a `project.godot` file | godot -p | [
"godot_1",
"godot_3",
"godot_9",
"godot_12",
"godot_14",
"godot_17",
"godot_25",
"godot_32",
"godot_41",
"godot_46"
] | godot | godot | true | {
"token": [
"-p",
"|main|"
],
"oracle_man": [
[
"godot_1",
"godot_3",
"godot_9",
"godot_12",
"godot_14",
"godot_17",
"godot_25",
"godot_32",
"godot_41",
"godot_46"
],
[
"godot_3",
"godot_4",
"godot_5",
"godot_6",
"godot_7",
"godot_8",
"godot_9",
"godot_10",
"godot_11",
"godot_12",
"godot_13",
"godot_14",
"godot_15",
"godot_16",
"godot_17",
"godot_18",
"godot_19",
"godot_20",
"godot_21",
"godot_22",
"godot_23",
"godot_24",
"godot_25",
"godot_26",
"godot_27",
"godot_28",
"godot_29",
"godot_30",
"godot_31",
"godot_32",
"godot_33",
"godot_34",
"godot_35",
"godot_36",
"godot_37",
"godot_38",
"godot_39",
"godot_40",
"godot_41",
"godot_42",
"godot_43",
"godot_44",
"godot_45",
"godot_46",
"godot_47",
"godot_48",
"godot_49",
"godot_50",
"godot_51"
]
]
} |
8461 | export a project for a given export preset (the preset must be defined in the project) | godot --export {{preset}} {{output_path}} | [
"godot_3",
"godot_44",
"godot_45",
"godot_46"
] | godot | godot | true | {
"token": [
"--export",
"|main|"
],
"oracle_man": [
[
"godot_44",
"godot_45",
"godot_46"
],
[
"godot_3",
"godot_4",
"godot_5",
"godot_6",
"godot_7",
"godot_8",
"godot_9",
"godot_10",
"godot_11",
"godot_12",
"godot_13",
"godot_14",
"godot_15",
"godot_16",
"godot_17",
"godot_18",
"godot_19",
"godot_20",
"godot_21",
"godot_22",
"godot_23",
"godot_24",
"godot_25",
"godot_26",
"godot_27",
"godot_28",
"godot_29",
"godot_30",
"godot_31",
"godot_32",
"godot_33",
"godot_34",
"godot_35",
"godot_36",
"godot_37",
"godot_38",
"godot_39",
"godot_40",
"godot_41",
"godot_42",
"godot_43",
"godot_44",
"godot_45",
"godot_46",
"godot_47",
"godot_48",
"godot_49",
"godot_50",
"godot_51"
]
]
} |
8462 | execute a standalone gdscript file (the script must inherit from `scenetree` or `mainloop`) | godot -s {{script.gd}} | [
"godot_3",
"godot_27",
"godot_31",
"godot_37",
"godot_42",
"godot_43",
"godot_49"
] | godot | godot | true | {
"token": [
"-s",
"|main|"
],
"oracle_man": [
[
"godot_27",
"godot_31",
"godot_37",
"godot_42",
"godot_43",
"godot_49"
],
[
"godot_3",
"godot_4",
"godot_5",
"godot_6",
"godot_7",
"godot_8",
"godot_9",
"godot_10",
"godot_11",
"godot_12",
"godot_13",
"godot_14",
"godot_15",
"godot_16",
"godot_17",
"godot_18",
"godot_19",
"godot_20",
"godot_21",
"godot_22",
"godot_23",
"godot_24",
"godot_25",
"godot_26",
"godot_27",
"godot_28",
"godot_29",
"godot_30",
"godot_31",
"godot_32",
"godot_33",
"godot_34",
"godot_35",
"godot_36",
"godot_37",
"godot_38",
"godot_39",
"godot_40",
"godot_41",
"godot_42",
"godot_43",
"godot_44",
"godot_45",
"godot_46",
"godot_47",
"godot_48",
"godot_49",
"godot_50",
"godot_51"
]
]
} |
8463 | import a json file into a specific collection | mongoimport --file={{path/to/file.json}} --uri={{mongodb_uri}} --collection={{collection_name}} | [
"mongoimport_3"
] | mongoimport | mongoimport | true | {
"token": [
"--file",
"--uri",
"--collection",
"|main|"
],
"oracle_man": [
[],
[],
[],
[
"mongoimport_3"
]
]
} |
8464 | import a csv file, using the first line of the file to determine field names | mongoimport --type={{csv}} --file={{path/to/file.csv}} --db={{database_name}} --collection={{collection_name}} | [
"mongoimport_3"
] | mongoimport | mongoimport | true | {
"token": [
"--type",
"--file",
"--db",
"--collection",
"|main|"
],
"oracle_man": [
[],
[],
[],
[],
[
"mongoimport_3"
]
]
} |
8465 | import a json array, using each element as a separate document | mongoimport --jsonArray --file={{path/to/file.json}} | [
"mongoimport_3"
] | mongoimport | mongoimport | true | {
"token": [
"--jsonArray",
"--file",
"|main|"
],
"oracle_man": [
[],
[],
[
"mongoimport_3"
]
]
} |
8466 | import a json file using a specific mode and a query to match existing documents | mongoimport --file={{path/to/file.json}} --mode={{delete|merge|upsert}} --upsertFields="{{field1,field2,...}}" | [
"mongoimport_3"
] | mongoimport | mongoimport | true | {
"token": [
"--file",
"--mode",
"--upsertFields",
"|main|"
],
"oracle_man": [
[],
[],
[],
[
"mongoimport_3"
]
]
} |
8467 | import a csv file, reading field names from a separate csv file and ignoring fields with empty values | mongoimport --type={{csv}} --file={{path/to/file.csv}} --fieldFile={{path/to/field_file.csv}} --ignoreBlanks | [
"mongoimport_3"
] | mongoimport | mongoimport | true | {
"token": [
"--type",
"--file",
"--fieldFile",
"--ignoreBlanks",
"|main|"
],
"oracle_man": [
[],
[],
[],
[],
[
"mongoimport_3"
]
]
} |
8468 | display help | mongoimport --help | [
"mongoimport_3",
"mongoimport_4"
] | mongoimport | mongoimport | true | {
"token": [
"--help",
"|main|"
],
"oracle_man": [
[
"mongoimport_4"
],
[
"mongoimport_3"
]
]
} |
8473 | adjust one or more directed graphs to improve the layout aspect ratio | unflatten {{path/to/input1.gv}} {{path/to/input2.gv ...}} > {{path/to/output.gv}} | [
"unflatten_3"
] | unflatten | unflatten | true | {
"token": [
"|main|"
],
"oracle_man": [
[
"unflatten_3"
]
]
} |
8474 | use `unflatten` as a preprocessor for `dot` layout to improve aspect ratio | unflatten {{path/to/input.gv}} | dot -T {{png}} {{path/to/output.png}} | [
"unflatten_3"
] | unflatten | unflatten | true | {
"token": [
"dot",
"-T",
"|main|"
],
"oracle_man": [
[],
[],
[
"unflatten_3"
]
]
} |
8475 | display help for `unflatten` | unflatten -? | [
"unflatten_3",
"unflatten_9"
] | unflatten | unflatten | true | {
"token": [
"-?",
"|main|"
],
"oracle_man": [
[
"unflatten_9"
],
[
"unflatten_3"
]
]
} |
8476 | list all available generators to destroy | rails destroy | [
"rails_1"
] | rails | rails-destroy | true | {
"token": [
"destroy",
"|main|"
],
"oracle_man": [
[],
[
"rails_1"
]
]
} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.