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 |
---|---|---|---|---|---|---|---|
7341 | create a hard link from a new file to an existing file | link {{path/to/existing_file}} {{path/to/new_file}} | [
"link_3"
] | link | link | true | {
"token": [
"|main|"
],
"oracle_man": [
[
"link_3",
"link_4",
"link_5"
]
]
} |
7347 | compile a file | go build {{path/to/main.go}} | [
"go-build_2",
"go-build_3",
"go-build_10",
"go-build_20",
"go-build_26"
] | go-build | go-build | true | {
"token": [
"go",
"build",
"|main|"
],
"oracle_man": [
[
"go-build_2"
],
[
"go-build_2",
"go-build_10",
"go-build_20",
"go-build_26"
],
[
"go-build_3",
"go-build_4",
"go-build_5",
"go-build_6",
"go-build_7",
"go-build_8",
"go-build_9"
]
]
} |
7348 | compile, specifying the output filename | go build -o {{path/to/binary}} {{path/to/source.go}} | [
"go-build_2",
"go-build_3",
"go-build_8",
"go-build_10",
"go-build_20",
"go-build_26",
"go-build_28",
"go-build_30"
] | go-build | go-build | true | {
"token": [
"go",
"build",
"-o",
"|main|"
],
"oracle_man": [
[
"go-build_2"
],
[
"go-build_2",
"go-build_10",
"go-build_20",
"go-build_26"
],
[
"go-build_2",
"go-build_8",
"go-build_28",
"go-build_30"
],
[
"go-build_3",
"go-build_4",
"go-build_5",
"go-build_6",
"go-build_7",
"go-build_8",
"go-build_9"
]
]
} |
7349 | compile a package | go build -o {{path/to/binary}} {{path/to/package}} | [
"go-build_2",
"go-build_3",
"go-build_8",
"go-build_10",
"go-build_20",
"go-build_26",
"go-build_28",
"go-build_30"
] | go-build | go-build | true | {
"token": [
"go",
"build",
"-o",
"|main|"
],
"oracle_man": [
[
"go-build_2"
],
[
"go-build_2",
"go-build_10",
"go-build_20",
"go-build_26"
],
[
"go-build_2",
"go-build_8",
"go-build_28",
"go-build_30"
],
[
"go-build_3",
"go-build_4",
"go-build_5",
"go-build_6",
"go-build_7",
"go-build_8",
"go-build_9"
]
]
} |
7350 | compile a main package into an executable, with data race detection | go build -race -o {{path/to/executable}} {{path/to/main/package}} | [
"go-build_2",
"go-build_3",
"go-build_8",
"go-build_10",
"go-build_14",
"go-build_20",
"go-build_24",
"go-build_26",
"go-build_28",
"go-build_30"
] | go-build | go-build | true | {
"token": [
"go",
"build",
"-race",
"-o",
"|main|"
],
"oracle_man": [
[
"go-build_2"
],
[
"go-build_2",
"go-build_10",
"go-build_20",
"go-build_26"
],
[
"go-build_14",
"go-build_24"
],
[
"go-build_2",
"go-build_8",
"go-build_28",
"go-build_30"
],
[
"go-build_3",
"go-build_4",
"go-build_5",
"go-build_6",
"go-build_7",
"go-build_8",
"go-build_9"
]
]
} |
7355 | install a role | ansible-galaxy install {{username}}.{{role_name}} | [
"ansible-galaxy_3"
] | ansible-galaxy | ansible-galaxy | true | {
"token": [
"install",
"|main|"
],
"oracle_man": [
[],
[
"ansible-galaxy_3"
]
]
} |
7356 | remove a role | ansible-galaxy remove {{username}}.{{role_name}} | [
"ansible-galaxy_3"
] | ansible-galaxy | ansible-galaxy | true | {
"token": [
"remove",
"|main|"
],
"oracle_man": [
[],
[
"ansible-galaxy_3"
]
]
} |
7357 | list installed roles | ansible-galaxy list | [
"ansible-galaxy_3"
] | ansible-galaxy | ansible-galaxy | true | {
"token": [
"list",
"|main|"
],
"oracle_man": [
[],
[
"ansible-galaxy_3"
]
]
} |
7358 | search for a given role | ansible-galaxy search {{role_name}} | [
"ansible-galaxy_3"
] | ansible-galaxy | ansible-galaxy | true | {
"token": [
"search",
"|main|"
],
"oracle_man": [
[],
[
"ansible-galaxy_3"
]
]
} |
7359 | create a new role | ansible-galaxy init {{role_name}} | [
"ansible-galaxy_3"
] | ansible-galaxy | ansible-galaxy | true | {
"token": [
"init",
"|main|"
],
"oracle_man": [
[],
[
"ansible-galaxy_3"
]
]
} |
7360 | get information about a user role | ansible-galaxy role info {{username}}.{{role_name}} | [
"ansible-galaxy_3",
"ansible-galaxy_8"
] | ansible-galaxy | ansible-galaxy | true | {
"token": [
"role",
"info",
"|main|"
],
"oracle_man": [
[
"ansible-galaxy_8"
],
[],
[
"ansible-galaxy_3"
]
]
} |
7361 | get information about a collection | ansible-galaxy collection info {{username}}.{{collection_name}} | [
"ansible-galaxy_3",
"ansible-galaxy_7"
] | ansible-galaxy | ansible-galaxy | true | {
"token": [
"collection",
"info",
"|main|"
],
"oracle_man": [
[
"ansible-galaxy_7"
],
[],
[
"ansible-galaxy_3"
]
]
} |
7364 | lint a file or directory recursively | flake8 {{path/to/file_or_directory}} | [
"flake8_3"
] | flake8 | flake8 | true | {
"token": [
"|main|"
],
"oracle_man": [
[
"flake8_3"
]
]
} |
7365 | lint a file or directory recursively and show the line on which each error occurred | flake8 --show-source {{path/to/file_or_directory}} | [
"flake8_3",
"flake8_19"
] | flake8 | flake8 | true | {
"token": [
"--show-source",
"|main|"
],
"oracle_man": [
[
"flake8_19"
],
[
"flake8_3"
]
]
} |
7366 | lint a file or directory recursively and ignore a list of rules. (all available rules can be found at flake8rules.com) | flake8 --ignore {{rule1,rule2}} {{path/to/file_or_directory}} | [
"flake8_3",
"flake8_15"
] | flake8 | flake8 | true | {
"token": [
"--ignore",
"|main|"
],
"oracle_man": [
[
"flake8_15"
],
[
"flake8_3"
]
]
} |
7367 | lint a file or directory recursively but exclude files matching the given globs or substrings | flake8 --exclude {{substring1,glob2}} {{path/to/file_or_directory}} | [
"flake8_3",
"flake8_10",
"flake8_36"
] | flake8 | flake8 | true | {
"token": [
"--exclude",
"|main|"
],
"oracle_man": [
[
"flake8_10",
"flake8_36"
],
[
"flake8_3"
]
]
} |
7368 | open a pdf file | xpdf {{path/to/file.pdf}} | [
"xpdf_5"
] | xpdf | xpdf | true | {
"token": [
"|main|"
],
"oracle_man": [
[
"xpdf_5",
"xpdf_6",
"xpdf_7",
"xpdf_8",
"xpdf_9",
"xpdf_10",
"xpdf_11",
"xpdf_12",
"xpdf_13",
"xpdf_14",
"xpdf_15"
]
]
} |
7369 | open a specific page in a pdf file | xpdf {{path/to/file.pdf}} :{{page_number}} | [
"xpdf_5"
] | xpdf | xpdf | true | {
"token": [
"|main|"
],
"oracle_man": [
[
"xpdf_5",
"xpdf_6",
"xpdf_7",
"xpdf_8",
"xpdf_9",
"xpdf_10",
"xpdf_11",
"xpdf_12",
"xpdf_13",
"xpdf_14",
"xpdf_15"
]
]
} |
7370 | open a compressed pdf file | xpdf {{path/to/file.pdf.tar}} | [
"xpdf_5"
] | xpdf | xpdf | true | {
"token": [
"|main|"
],
"oracle_man": [
[
"xpdf_5",
"xpdf_6",
"xpdf_7",
"xpdf_8",
"xpdf_9",
"xpdf_10",
"xpdf_11",
"xpdf_12",
"xpdf_13",
"xpdf_14",
"xpdf_15"
]
]
} |
7371 | open a pdf file in fullscreen mode | xpdf -fullscreen {{path/to/file.pdf}} | [
"xpdf_5",
"xpdf_32",
"xpdf_102"
] | xpdf | xpdf | true | {
"token": [
"-fullscreen",
"|main|"
],
"oracle_man": [
[
"xpdf_32",
"xpdf_102"
],
[
"xpdf_5",
"xpdf_6",
"xpdf_7",
"xpdf_8",
"xpdf_9",
"xpdf_10",
"xpdf_11",
"xpdf_12",
"xpdf_13",
"xpdf_14",
"xpdf_15"
]
]
} |
7372 | specify the initial zoom | xpdf -z {{75}}% {{path/to/file.pdf}} | [
"xpdf_5",
"xpdf_26",
"xpdf_46",
"xpdf_75"
] | xpdf | xpdf | true | {
"token": [
"-z",
"|main|"
],
"oracle_man": [
[
"xpdf_26",
"xpdf_46",
"xpdf_75"
],
[
"xpdf_5",
"xpdf_6",
"xpdf_7",
"xpdf_8",
"xpdf_9",
"xpdf_10",
"xpdf_11",
"xpdf_12",
"xpdf_13",
"xpdf_14",
"xpdf_15"
]
]
} |
7373 | specify the initial zoom at page width or full page | xpdf -z {{page|width}} {{path/to/file.pdf}} | [
"xpdf_5",
"xpdf_26",
"xpdf_46",
"xpdf_75"
] | xpdf | xpdf | true | {
"token": [
"-z",
"|main|"
],
"oracle_man": [
[
"xpdf_26",
"xpdf_46",
"xpdf_75"
],
[
"xpdf_5",
"xpdf_6",
"xpdf_7",
"xpdf_8",
"xpdf_9",
"xpdf_10",
"xpdf_11",
"xpdf_12",
"xpdf_13",
"xpdf_14",
"xpdf_15"
]
]
} |
7387 | print a file to the console in rainbow colors | lolcat {{path/to/file}} | [
"lolcat_3"
] | lolcat | lolcat | true | {
"token": [
"|main|"
],
"oracle_man": [
[
"lolcat_3",
"lolcat_4"
]
]
} |
7388 | print the result of a textproducing command in rainbow colors | {{fortune}} | lolcat | [
"lolcat_3"
] | lolcat | lolcat | true | {
"token": [
"|main|"
],
"oracle_man": [
[
"lolcat_3",
"lolcat_4"
]
]
} |
7389 | print a file to the console with animated rainbow colors | lolcat -a {{path/to/file}} | [
"lolcat_3",
"lolcat_8",
"lolcat_19"
] | lolcat | lolcat | true | {
"token": [
"-a",
"|main|"
],
"oracle_man": [
[
"lolcat_8",
"lolcat_19"
],
[
"lolcat_3",
"lolcat_4"
]
]
} |
7390 | print a file to the console with 24bit (truecolor) rainbow colors | lolcat -t {{path/to/file}} | [
"lolcat_3",
"lolcat_12"
] | lolcat | lolcat | true | {
"token": [
"-t",
"|main|"
],
"oracle_man": [
[
"lolcat_12"
],
[
"lolcat_3",
"lolcat_4"
]
]
} |
7391 | show help | docker system | [
"docker-system_2",
"docker-system_3"
] | docker-system | docker-system | true | {
"token": [
"docker",
"system",
"|main|"
],
"oracle_man": [
[
"docker-system_2"
],
[
"docker-system_2"
],
[
"docker-system_3"
]
]
} |
7392 | show docker disk usage | docker system df | [
"docker-system_2",
"docker-system_3"
] | docker-system | docker-system | true | {
"token": [
"docker",
"system",
"df",
"|main|"
],
"oracle_man": [
[
"docker-system_2"
],
[
"docker-system_2"
],
[],
[
"docker-system_3"
]
]
} |
7393 | show detailed information on disk usage | docker system df --verbose | [
"docker-system_2",
"docker-system_3"
] | docker-system | docker-system | true | {
"token": [
"docker",
"system",
"df",
"--verbose",
"|main|"
],
"oracle_man": [
[
"docker-system_2"
],
[
"docker-system_2"
],
[],
[],
[
"docker-system_3"
]
]
} |
7394 | remove unused data | docker system prune | [
"docker-system_2",
"docker-system_3"
] | docker-system | docker-system | true | {
"token": [
"docker",
"system",
"prune",
"|main|"
],
"oracle_man": [
[
"docker-system_2"
],
[
"docker-system_2"
],
[],
[
"docker-system_3"
]
]
} |
7395 | remove unused data created more than a specified amount of time in the past | docker system prune --filter="until={{hours}}h{{minutes}}m" | [
"docker-system_2",
"docker-system_3"
] | docker-system | docker-system | true | {
"token": [
"docker",
"system",
"prune",
"--filter=until",
"|main|"
],
"oracle_man": [
[
"docker-system_2"
],
[
"docker-system_2"
],
[],
[],
[
"docker-system_3"
]
]
} |
7396 | display realtime events from the docker daemon | docker system events | [
"docker-system_2",
"docker-system_3"
] | docker-system | docker-system | true | {
"token": [
"docker",
"system",
"events",
"|main|"
],
"oracle_man": [
[
"docker-system_2"
],
[
"docker-system_2"
],
[],
[
"docker-system_3"
]
]
} |
7397 | display realtime events from containers streamed as valid json lines | docker system events --filter 'type=container' --format '{{json .}}' | [
"docker-system_2",
"docker-system_3"
] | docker-system | docker-system | true | {
"token": [
"docker",
"system",
"events",
"--filter",
"type=container",
"--format",
"|main|"
],
"oracle_man": [
[
"docker-system_2"
],
[
"docker-system_2"
],
[],
[],
[],
[],
[
"docker-system_3"
]
]
} |
7398 | display systemwide information | docker system info | [
"docker-system_2",
"docker-system_3"
] | docker-system | docker-system | true | {
"token": [
"docker",
"system",
"info",
"|main|"
],
"oracle_man": [
[
"docker-system_2"
],
[
"docker-system_2"
],
[],
[
"docker-system_3"
]
]
} |
7399 | initialize a database with a scale factor of 50 times the default size | pgbench --initialize --scale={{50}} {{database_name}} | [
"pgbench_4",
"pgbench_21",
"pgbench_36",
"pgbench_71"
] | pgbench | pgbench | true | {
"token": [
"--initialize",
"--scale",
"|main|"
],
"oracle_man": [
[
"pgbench_21"
],
[
"pgbench_36",
"pgbench_71"
],
[
"pgbench_4",
"pgbench_5",
"pgbench_6",
"pgbench_7",
"pgbench_8",
"pgbench_9",
"pgbench_10",
"pgbench_11",
"pgbench_12",
"pgbench_13",
"pgbench_14",
"pgbench_15",
"pgbench_16",
"pgbench_17"
]
]
} |
7400 | benchmark a database with 10 clients, 2 worker threads, and 10,000 transactions per client | pgbench --client={{10}} --jobs={{2}} --transactions={{10000}} {{database_name}} | [
"pgbench_4",
"pgbench_46",
"pgbench_52",
"pgbench_73"
] | pgbench | pgbench | true | {
"token": [
"--client",
"--jobs",
"--transactions",
"|main|"
],
"oracle_man": [
[
"pgbench_46"
],
[
"pgbench_52"
],
[
"pgbench_73"
],
[
"pgbench_4",
"pgbench_5",
"pgbench_6",
"pgbench_7",
"pgbench_8",
"pgbench_9",
"pgbench_10",
"pgbench_11",
"pgbench_12",
"pgbench_13",
"pgbench_14",
"pgbench_15",
"pgbench_16",
"pgbench_17"
]
]
} |
7401 | set a new environment variable | export {{VARIABLE}}={{value}} | [
"export_5"
] | export | export | true | {
"token": [
"|main|"
],
"oracle_man": [
[
"export_5",
"export_6",
"export_7",
"export_8",
"export_9",
"export_10",
"export_11",
"export_12",
"export_13",
"export_14",
"export_15"
]
]
} |
7402 | remove an environment variable | export -n {{VARIABLE}} | [
"export_5"
] | export | export | true | {
"token": [
"-n",
"|main|"
],
"oracle_man": [
[],
[
"export_5",
"export_6",
"export_7",
"export_8",
"export_9",
"export_10",
"export_11",
"export_12",
"export_13",
"export_14",
"export_15"
]
]
} |
7403 | mark a shell function for export | export -f {{FUNCTION_NAME}} | [
"export_5",
"export_35"
] | export | export | true | {
"token": [
"-f",
"|main|"
],
"oracle_man": [
[
"export_35"
],
[
"export_5",
"export_6",
"export_7",
"export_8",
"export_9",
"export_10",
"export_11",
"export_12",
"export_13",
"export_14",
"export_15"
]
]
} |
7404 | append something to the path variable | export PATH=$PATH:{{path/to/append}} | [
"export_5"
] | export | export | true | {
"token": [
"|main|"
],
"oracle_man": [
[
"export_5",
"export_6",
"export_7",
"export_8",
"export_9",
"export_10",
"export_11",
"export_12",
"export_13",
"export_14",
"export_15"
]
]
} |
7405 | create a new python 3.6.6 virtual environment | pyenv virtualenv {{3.6.6}} {{virtualenv_name}} | [
"pyenv_3",
"pyenv_52"
] | pyenv | pyenv-virtualenv | true | {
"token": [
"virtualenv",
"|main|"
],
"oracle_man": [
[
"pyenv_52"
],
[
"pyenv_3",
"pyenv_4",
"pyenv_5",
"pyenv_6",
"pyenv_7",
"pyenv_8",
"pyenv_9",
"pyenv_10",
"pyenv_11",
"pyenv_12",
"pyenv_13",
"pyenv_14",
"pyenv_15",
"pyenv_16",
"pyenv_17",
"pyenv_18"
]
]
} |
7406 | list all existing virtual environments | pyenv virtualenvs | [
"pyenv_3"
] | pyenv | pyenv-virtualenv | true | {
"token": [
"virtualenvs",
"|main|"
],
"oracle_man": [
[],
[
"pyenv_3",
"pyenv_4",
"pyenv_5",
"pyenv_6",
"pyenv_7",
"pyenv_8",
"pyenv_9",
"pyenv_10",
"pyenv_11",
"pyenv_12",
"pyenv_13",
"pyenv_14",
"pyenv_15",
"pyenv_16",
"pyenv_17",
"pyenv_18"
]
]
} |
7407 | activate a virtual environment | pyenv activate {{virtualenv_name}} | [
"pyenv_3"
] | pyenv | pyenv-virtualenv | true | {
"token": [
"activate",
"|main|"
],
"oracle_man": [
[],
[
"pyenv_3",
"pyenv_4",
"pyenv_5",
"pyenv_6",
"pyenv_7",
"pyenv_8",
"pyenv_9",
"pyenv_10",
"pyenv_11",
"pyenv_12",
"pyenv_13",
"pyenv_14",
"pyenv_15",
"pyenv_16",
"pyenv_17",
"pyenv_18"
]
]
} |
7408 | deactivate the virtual environment | pyenv deactivate | [
"pyenv_3"
] | pyenv | pyenv-virtualenv | true | {
"token": [
"deactivate",
"|main|"
],
"oracle_man": [
[],
[
"pyenv_3",
"pyenv_4",
"pyenv_5",
"pyenv_6",
"pyenv_7",
"pyenv_8",
"pyenv_9",
"pyenv_10",
"pyenv_11",
"pyenv_12",
"pyenv_13",
"pyenv_14",
"pyenv_15",
"pyenv_16",
"pyenv_17",
"pyenv_18"
]
]
} |
7409 | create a commit object with the specified message | git commit-tree {{tree}} -m "{{message}}" | [
"git-commit-tree_2",
"git-commit-tree_3",
"git-commit-tree_4",
"git-commit-tree_5",
"git-commit-tree_11"
] | git-commit-tree | git-commit-tree | true | {
"token": [
"git",
"commit-tree",
"-m",
"|main|"
],
"oracle_man": [
[
"git-commit-tree_2"
],
[
"git-commit-tree_2"
],
[
"git-commit-tree_2",
"git-commit-tree_4",
"git-commit-tree_5",
"git-commit-tree_11"
],
[
"git-commit-tree_3",
"git-commit-tree_4",
"git-commit-tree_5",
"git-commit-tree_6",
"git-commit-tree_7",
"git-commit-tree_8"
]
]
} |
7410 | create a commit object reading the message from a file (use `` for stdin) | git commit-tree {{tree}} -F {{path/to/file}} | [
"git-commit-tree_2",
"git-commit-tree_3",
"git-commit-tree_4",
"git-commit-tree_5",
"git-commit-tree_12"
] | git-commit-tree | git-commit-tree | true | {
"token": [
"git",
"commit-tree",
"-F",
"|main|"
],
"oracle_man": [
[
"git-commit-tree_2"
],
[
"git-commit-tree_2"
],
[
"git-commit-tree_2",
"git-commit-tree_4",
"git-commit-tree_5",
"git-commit-tree_12"
],
[
"git-commit-tree_3",
"git-commit-tree_4",
"git-commit-tree_5",
"git-commit-tree_6",
"git-commit-tree_7",
"git-commit-tree_8"
]
]
} |
7411 | create a gpgsigned commit object | git commit-tree {{tree}} -m "{{message}}" --gpg-sign | [
"git-commit-tree_2",
"git-commit-tree_3",
"git-commit-tree_4",
"git-commit-tree_5",
"git-commit-tree_11",
"git-commit-tree_13"
] | git-commit-tree | git-commit-tree | true | {
"token": [
"git",
"commit-tree",
"-m",
"--gpg-sign",
"|main|"
],
"oracle_man": [
[
"git-commit-tree_2"
],
[
"git-commit-tree_2"
],
[
"git-commit-tree_2",
"git-commit-tree_4",
"git-commit-tree_5",
"git-commit-tree_11"
],
[
"git-commit-tree_13"
],
[
"git-commit-tree_3",
"git-commit-tree_4",
"git-commit-tree_5",
"git-commit-tree_6",
"git-commit-tree_7",
"git-commit-tree_8"
]
]
} |
7412 | create a commit object with the specified parent commit object | git commit-tree {{tree}} -m "{{message}}" -p {{parent_commit_sha}} | [
"git-commit-tree_2",
"git-commit-tree_3",
"git-commit-tree_4",
"git-commit-tree_5",
"git-commit-tree_10",
"git-commit-tree_11"
] | git-commit-tree | git-commit-tree | true | {
"token": [
"git",
"commit-tree",
"-m",
"-p",
"|main|"
],
"oracle_man": [
[
"git-commit-tree_2"
],
[
"git-commit-tree_2"
],
[
"git-commit-tree_2",
"git-commit-tree_4",
"git-commit-tree_5",
"git-commit-tree_11"
],
[
"git-commit-tree_2",
"git-commit-tree_10"
],
[
"git-commit-tree_3",
"git-commit-tree_4",
"git-commit-tree_5",
"git-commit-tree_6",
"git-commit-tree_7",
"git-commit-tree_8"
]
]
} |
7419 | display help about a specific git subcommand | git help {{subcommand}} | [
"git-help_2",
"git-help_3",
"git-help_8",
"git-help_20",
"git-help_24",
"git-help_42",
"git-help_43"
] | git-help | git-help | true | {
"token": [
"git",
"help",
"|main|"
],
"oracle_man": [
[
"git-help_2",
"git-help_8",
"git-help_42",
"git-help_43"
],
[
"git-help_2",
"git-help_20",
"git-help_24"
],
[
"git-help_3",
"git-help_4",
"git-help_5",
"git-help_6",
"git-help_7",
"git-help_8",
"git-help_9",
"git-help_10"
]
]
} |
7420 | display help about a specific git subcommand in a web browser | git help --web {{subcommand}} | [
"git-help_2",
"git-help_3",
"git-help_8",
"git-help_18",
"git-help_20",
"git-help_23",
"git-help_24",
"git-help_42",
"git-help_43"
] | git-help | git-help | true | {
"token": [
"git",
"help",
"--web",
"|main|"
],
"oracle_man": [
[
"git-help_2",
"git-help_8",
"git-help_42",
"git-help_43"
],
[
"git-help_2",
"git-help_20",
"git-help_24"
],
[
"git-help_2",
"git-help_18",
"git-help_23",
"git-help_24"
],
[
"git-help_3",
"git-help_4",
"git-help_5",
"git-help_6",
"git-help_7",
"git-help_8",
"git-help_9",
"git-help_10"
]
]
} |
7421 | display a list of all available git subcommands | git help --all | [
"git-help_2",
"git-help_3",
"git-help_4",
"git-help_8",
"git-help_11",
"git-help_12",
"git-help_20",
"git-help_24",
"git-help_42",
"git-help_43"
] | git-help | git-help | true | {
"token": [
"git",
"help",
"--all",
"|main|"
],
"oracle_man": [
[
"git-help_2",
"git-help_8",
"git-help_42",
"git-help_43"
],
[
"git-help_2",
"git-help_20",
"git-help_24"
],
[
"git-help_2",
"git-help_4",
"git-help_11",
"git-help_12"
],
[
"git-help_3",
"git-help_4",
"git-help_5",
"git-help_6",
"git-help_7",
"git-help_8",
"git-help_9",
"git-help_10"
]
]
} |
7422 | list the available guides | git help --guide | [
"git-help_2",
"git-help_3",
"git-help_5",
"git-help_8",
"git-help_14",
"git-help_20",
"git-help_24",
"git-help_42",
"git-help_43"
] | git-help | git-help | true | {
"token": [
"git",
"help",
"--guide",
"|main|"
],
"oracle_man": [
[
"git-help_2",
"git-help_8",
"git-help_42",
"git-help_43"
],
[
"git-help_2",
"git-help_20",
"git-help_24"
],
[
"git-help_2",
"git-help_5",
"git-help_14"
],
[
"git-help_3",
"git-help_4",
"git-help_5",
"git-help_6",
"git-help_7",
"git-help_8",
"git-help_9",
"git-help_10"
]
]
} |
7423 | list all possible configuration variables | git help --config | [
"git-help_2",
"git-help_3",
"git-help_8",
"git-help_13",
"git-help_20",
"git-help_24",
"git-help_42",
"git-help_43"
] | git-help | git-help | true | {
"token": [
"git",
"help",
"--config",
"|main|"
],
"oracle_man": [
[
"git-help_2",
"git-help_8",
"git-help_42",
"git-help_43"
],
[
"git-help_2",
"git-help_20",
"git-help_24"
],
[
"git-help_2",
"git-help_13"
],
[
"git-help_3",
"git-help_4",
"git-help_5",
"git-help_6",
"git-help_7",
"git-help_8",
"git-help_9",
"git-help_10"
]
]
} |
7424 | display a cursor to kill a window when pressing the left mouse button (press any other mouse button to cancel) | xkill | [
"xkill_3"
] | xkill | xkill | true | {
"token": [
"|main|"
],
"oracle_man": [
[
"xkill_3"
]
]
} |
7425 | display a cursor to select a window to kill by pressing any mouse button | xkill -button any | [
"xkill_2",
"xkill_3",
"xkill_6"
] | xkill | xkill | true | {
"token": [
"-button",
"any",
"|main|"
],
"oracle_man": [
[
"xkill_2",
"xkill_6"
],
[],
[
"xkill_3"
]
]
} |
7426 | scan file and output strings to `messages.po` | xgettext {{path/to/input_file}} | [
"xgettext_3"
] | xgettext | xgettext | true | {
"token": [
"|main|"
],
"oracle_man": [
[
"xgettext_3",
"xgettext_4",
"xgettext_5",
"xgettext_6",
"xgettext_7",
"xgettext_8",
"xgettext_9",
"xgettext_10",
"xgettext_11",
"xgettext_12",
"xgettext_13",
"xgettext_14",
"xgettext_15",
"xgettext_16",
"xgettext_17",
"xgettext_18",
"xgettext_19",
"xgettext_20",
"xgettext_21",
"xgettext_22",
"xgettext_23",
"xgettext_24",
"xgettext_25",
"xgettext_26",
"xgettext_27",
"xgettext_28",
"xgettext_29",
"xgettext_30",
"xgettext_31",
"xgettext_32",
"xgettext_33",
"xgettext_34",
"xgettext_35",
"xgettext_36",
"xgettext_37",
"xgettext_38",
"xgettext_39",
"xgettext_40",
"xgettext_41",
"xgettext_42",
"xgettext_43",
"xgettext_44",
"xgettext_45",
"xgettext_46",
"xgettext_47",
"xgettext_48",
"xgettext_49",
"xgettext_50",
"xgettext_51",
"xgettext_52",
"xgettext_53",
"xgettext_54",
"xgettext_55",
"xgettext_56",
"xgettext_57",
"xgettext_58",
"xgettext_59",
"xgettext_60",
"xgettext_61",
"xgettext_62",
"xgettext_63",
"xgettext_64"
]
]
} |
7427 | use a different output filename | xgettext --output {{path/to/output_file}} {{path/to/input_file}} | [
"xgettext_3",
"xgettext_10",
"xgettext_11"
] | xgettext | xgettext | true | {
"token": [
"--output",
"|main|"
],
"oracle_man": [
[
"xgettext_10",
"xgettext_11"
],
[
"xgettext_3",
"xgettext_4",
"xgettext_5",
"xgettext_6",
"xgettext_7",
"xgettext_8",
"xgettext_9",
"xgettext_10",
"xgettext_11",
"xgettext_12",
"xgettext_13",
"xgettext_14",
"xgettext_15",
"xgettext_16",
"xgettext_17",
"xgettext_18",
"xgettext_19",
"xgettext_20",
"xgettext_21",
"xgettext_22",
"xgettext_23",
"xgettext_24",
"xgettext_25",
"xgettext_26",
"xgettext_27",
"xgettext_28",
"xgettext_29",
"xgettext_30",
"xgettext_31",
"xgettext_32",
"xgettext_33",
"xgettext_34",
"xgettext_35",
"xgettext_36",
"xgettext_37",
"xgettext_38",
"xgettext_39",
"xgettext_40",
"xgettext_41",
"xgettext_42",
"xgettext_43",
"xgettext_44",
"xgettext_45",
"xgettext_46",
"xgettext_47",
"xgettext_48",
"xgettext_49",
"xgettext_50",
"xgettext_51",
"xgettext_52",
"xgettext_53",
"xgettext_54",
"xgettext_55",
"xgettext_56",
"xgettext_57",
"xgettext_58",
"xgettext_59",
"xgettext_60",
"xgettext_61",
"xgettext_62",
"xgettext_63",
"xgettext_64"
]
]
} |
7428 | append new strings to an existing file | xgettext --join-existing --output {{path/to/output_file}} {{path/to/input_file}} | [
"xgettext_3",
"xgettext_10",
"xgettext_11",
"xgettext_18"
] | xgettext | xgettext | true | {
"token": [
"--join-existing",
"--output",
"|main|"
],
"oracle_man": [
[
"xgettext_18"
],
[
"xgettext_10",
"xgettext_11"
],
[
"xgettext_3",
"xgettext_4",
"xgettext_5",
"xgettext_6",
"xgettext_7",
"xgettext_8",
"xgettext_9",
"xgettext_10",
"xgettext_11",
"xgettext_12",
"xgettext_13",
"xgettext_14",
"xgettext_15",
"xgettext_16",
"xgettext_17",
"xgettext_18",
"xgettext_19",
"xgettext_20",
"xgettext_21",
"xgettext_22",
"xgettext_23",
"xgettext_24",
"xgettext_25",
"xgettext_26",
"xgettext_27",
"xgettext_28",
"xgettext_29",
"xgettext_30",
"xgettext_31",
"xgettext_32",
"xgettext_33",
"xgettext_34",
"xgettext_35",
"xgettext_36",
"xgettext_37",
"xgettext_38",
"xgettext_39",
"xgettext_40",
"xgettext_41",
"xgettext_42",
"xgettext_43",
"xgettext_44",
"xgettext_45",
"xgettext_46",
"xgettext_47",
"xgettext_48",
"xgettext_49",
"xgettext_50",
"xgettext_51",
"xgettext_52",
"xgettext_53",
"xgettext_54",
"xgettext_55",
"xgettext_56",
"xgettext_57",
"xgettext_58",
"xgettext_59",
"xgettext_60",
"xgettext_61",
"xgettext_62",
"xgettext_63",
"xgettext_64"
]
]
} |
7429 | don't add a header containing metadata to the output file | xgettext --omit-header {{path/to/input_file}} | [
"xgettext_3",
"xgettext_54"
] | xgettext | xgettext | true | {
"token": [
"--omit-header",
"|main|"
],
"oracle_man": [
[
"xgettext_54"
],
[
"xgettext_3",
"xgettext_4",
"xgettext_5",
"xgettext_6",
"xgettext_7",
"xgettext_8",
"xgettext_9",
"xgettext_10",
"xgettext_11",
"xgettext_12",
"xgettext_13",
"xgettext_14",
"xgettext_15",
"xgettext_16",
"xgettext_17",
"xgettext_18",
"xgettext_19",
"xgettext_20",
"xgettext_21",
"xgettext_22",
"xgettext_23",
"xgettext_24",
"xgettext_25",
"xgettext_26",
"xgettext_27",
"xgettext_28",
"xgettext_29",
"xgettext_30",
"xgettext_31",
"xgettext_32",
"xgettext_33",
"xgettext_34",
"xgettext_35",
"xgettext_36",
"xgettext_37",
"xgettext_38",
"xgettext_39",
"xgettext_40",
"xgettext_41",
"xgettext_42",
"xgettext_43",
"xgettext_44",
"xgettext_45",
"xgettext_46",
"xgettext_47",
"xgettext_48",
"xgettext_49",
"xgettext_50",
"xgettext_51",
"xgettext_52",
"xgettext_53",
"xgettext_54",
"xgettext_55",
"xgettext_56",
"xgettext_57",
"xgettext_58",
"xgettext_59",
"xgettext_60",
"xgettext_61",
"xgettext_62",
"xgettext_63",
"xgettext_64"
]
]
} |
7434 | check the format of the specified refname | git check-ref-format {{refs/head/refname}} | [
"git-check-ref-format_2",
"git-check-ref-format_3",
"git-check-ref-format_26",
"git-check-ref-format_28"
] | git-check-ref-format | git-check-ref-format | true | {
"token": [
"git",
"check-ref-format",
"|main|"
],
"oracle_man": [
[
"git-check-ref-format_2",
"git-check-ref-format_26",
"git-check-ref-format_28"
],
[
"git-check-ref-format_2",
"git-check-ref-format_26",
"git-check-ref-format_28"
],
[
"git-check-ref-format_3",
"git-check-ref-format_4",
"git-check-ref-format_5",
"git-check-ref-format_6",
"git-check-ref-format_7",
"git-check-ref-format_8",
"git-check-ref-format_9",
"git-check-ref-format_10",
"git-check-ref-format_11",
"git-check-ref-format_12",
"git-check-ref-format_13",
"git-check-ref-format_14",
"git-check-ref-format_15",
"git-check-ref-format_16",
"git-check-ref-format_17",
"git-check-ref-format_18",
"git-check-ref-format_19",
"git-check-ref-format_20",
"git-check-ref-format_21"
]
]
} |
7435 | print the name of the last branch checked out | git check-ref-format --branch @{-1} | [
"git-check-ref-format_2",
"git-check-ref-format_3",
"git-check-ref-format_21",
"git-check-ref-format_26",
"git-check-ref-format_28"
] | git-check-ref-format | git-check-ref-format | true | {
"token": [
"git",
"check-ref-format",
"--branch",
"@{-1}",
"|main|"
],
"oracle_man": [
[
"git-check-ref-format_2",
"git-check-ref-format_26",
"git-check-ref-format_28"
],
[
"git-check-ref-format_2",
"git-check-ref-format_26",
"git-check-ref-format_28"
],
[
"git-check-ref-format_2",
"git-check-ref-format_21",
"git-check-ref-format_26"
],
[],
[
"git-check-ref-format_3",
"git-check-ref-format_4",
"git-check-ref-format_5",
"git-check-ref-format_6",
"git-check-ref-format_7",
"git-check-ref-format_8",
"git-check-ref-format_9",
"git-check-ref-format_10",
"git-check-ref-format_11",
"git-check-ref-format_12",
"git-check-ref-format_13",
"git-check-ref-format_14",
"git-check-ref-format_15",
"git-check-ref-format_16",
"git-check-ref-format_17",
"git-check-ref-format_18",
"git-check-ref-format_19",
"git-check-ref-format_20",
"git-check-ref-format_21"
]
]
} |
7436 | normalize a refname | git check-ref-format --normalize {{refs/head/refname}} | [
"git-check-ref-format_2",
"git-check-ref-format_3",
"git-check-ref-format_11",
"git-check-ref-format_24",
"git-check-ref-format_26",
"git-check-ref-format_28"
] | git-check-ref-format | git-check-ref-format | true | {
"token": [
"git",
"check-ref-format",
"--normalize",
"|main|"
],
"oracle_man": [
[
"git-check-ref-format_2",
"git-check-ref-format_26",
"git-check-ref-format_28"
],
[
"git-check-ref-format_2",
"git-check-ref-format_26",
"git-check-ref-format_28"
],
[
"git-check-ref-format_2",
"git-check-ref-format_11",
"git-check-ref-format_24",
"git-check-ref-format_28"
],
[
"git-check-ref-format_3",
"git-check-ref-format_4",
"git-check-ref-format_5",
"git-check-ref-format_6",
"git-check-ref-format_7",
"git-check-ref-format_8",
"git-check-ref-format_9",
"git-check-ref-format_10",
"git-check-ref-format_11",
"git-check-ref-format_12",
"git-check-ref-format_13",
"git-check-ref-format_14",
"git-check-ref-format_15",
"git-check-ref-format_16",
"git-check-ref-format_17",
"git-check-ref-format_18",
"git-check-ref-format_19",
"git-check-ref-format_20",
"git-check-ref-format_21"
]
]
} |
7452 | view a summary of all the commits made, grouped alphabetically by author name | git shortlog | [
"git-shortlog_2",
"git-shortlog_3"
] | git-shortlog | git-shortlog | true | {
"token": [
"git",
"shortlog",
"|main|"
],
"oracle_man": [
[
"git-shortlog_2",
"git-shortlog_3"
],
[
"git-shortlog_2"
],
[
"git-shortlog_3",
"git-shortlog_4",
"git-shortlog_5"
]
]
} |
7453 | view a summary of all the commits made, sorted by the number of commits made | git shortlog -n | [
"git-shortlog_2",
"git-shortlog_3",
"git-shortlog_6",
"git-shortlog_14",
"git-shortlog_27",
"git-shortlog_34",
"git-shortlog_45",
"git-shortlog_46",
"git-shortlog_47",
"git-shortlog_49",
"git-shortlog_61",
"git-shortlog_67",
"git-shortlog_68"
] | git-shortlog | git-shortlog | true | {
"token": [
"git",
"shortlog",
"-n",
"|main|"
],
"oracle_man": [
[
"git-shortlog_2",
"git-shortlog_3"
],
[
"git-shortlog_2"
],
[
"git-shortlog_6",
"git-shortlog_14",
"git-shortlog_27",
"git-shortlog_34",
"git-shortlog_45",
"git-shortlog_46",
"git-shortlog_47",
"git-shortlog_49",
"git-shortlog_61",
"git-shortlog_67",
"git-shortlog_68"
],
[
"git-shortlog_3",
"git-shortlog_4",
"git-shortlog_5"
]
]
} |
7454 | view a summary of all the commits made, grouped by the committer identities (name and email) | git shortlog -c | [
"git-shortlog_2",
"git-shortlog_3",
"git-shortlog_13",
"git-shortlog_18",
"git-shortlog_27",
"git-shortlog_31",
"git-shortlog_37",
"git-shortlog_41",
"git-shortlog_58",
"git-shortlog_63",
"git-shortlog_64",
"git-shortlog_67",
"git-shortlog_68",
"git-shortlog_70",
"git-shortlog_104",
"git-shortlog_151"
] | git-shortlog | git-shortlog | true | {
"token": [
"git",
"shortlog",
"-c",
"|main|"
],
"oracle_man": [
[
"git-shortlog_2",
"git-shortlog_3"
],
[
"git-shortlog_2"
],
[
"git-shortlog_13",
"git-shortlog_18",
"git-shortlog_27",
"git-shortlog_31",
"git-shortlog_37",
"git-shortlog_41",
"git-shortlog_58",
"git-shortlog_63",
"git-shortlog_64",
"git-shortlog_67",
"git-shortlog_68",
"git-shortlog_70",
"git-shortlog_104",
"git-shortlog_151"
],
[
"git-shortlog_3",
"git-shortlog_4",
"git-shortlog_5"
]
]
} |
7455 | view a summary of the last 5 commits (i.e. specify a revision range) | git shortlog HEAD~{{5}}..HEAD | [
"git-shortlog_2",
"git-shortlog_3"
] | git-shortlog | git-shortlog | true | {
"token": [
"git",
"shortlog",
"|main|"
],
"oracle_man": [
[
"git-shortlog_2",
"git-shortlog_3"
],
[
"git-shortlog_2"
],
[
"git-shortlog_3",
"git-shortlog_4",
"git-shortlog_5"
]
]
} |
7456 | view all users, emails and the number of commits in the current branch | git shortlog -sne | [
"git-shortlog_2",
"git-shortlog_3",
"git-shortlog_8",
"git-shortlog_16",
"git-shortlog_39",
"git-shortlog_43",
"git-shortlog_55",
"git-shortlog_67"
] | git-shortlog | git-shortlog | true | {
"token": [
"git",
"shortlog",
"-sne",
"|main|"
],
"oracle_man": [
[
"git-shortlog_2",
"git-shortlog_3"
],
[
"git-shortlog_2"
],
[
"git-shortlog_8",
"git-shortlog_16",
"git-shortlog_39",
"git-shortlog_43",
"git-shortlog_55",
"git-shortlog_67"
],
[
"git-shortlog_3",
"git-shortlog_4",
"git-shortlog_5"
]
]
} |
7457 | view all users, emails and the number of commits in all branches | git shortlog -sne --all | [
"git-shortlog_2",
"git-shortlog_3",
"git-shortlog_8",
"git-shortlog_16",
"git-shortlog_33",
"git-shortlog_35",
"git-shortlog_39",
"git-shortlog_43",
"git-shortlog_50",
"git-shortlog_55",
"git-shortlog_56",
"git-shortlog_59",
"git-shortlog_67"
] | git-shortlog | git-shortlog | true | {
"token": [
"git",
"shortlog",
"-sne",
"--all",
"|main|"
],
"oracle_man": [
[
"git-shortlog_2",
"git-shortlog_3"
],
[
"git-shortlog_2"
],
[
"git-shortlog_8",
"git-shortlog_16",
"git-shortlog_39",
"git-shortlog_43",
"git-shortlog_55",
"git-shortlog_67"
],
[
"git-shortlog_33",
"git-shortlog_35",
"git-shortlog_50",
"git-shortlog_55",
"git-shortlog_56",
"git-shortlog_59"
],
[
"git-shortlog_3",
"git-shortlog_4",
"git-shortlog_5"
]
]
} |
7458 | create a new searchable pdf/a file from a scanned pdf or image file | ocrmypdf {{path/to/input_file}} {{path/to/output.pdf}} | [
"ocrmypdf_2"
] | ocrmypdf | ocrmypdf | true | {
"token": [
"|main|"
],
"oracle_man": [
[
"ocrmypdf_2",
"ocrmypdf_3",
"ocrmypdf_4",
"ocrmypdf_5",
"ocrmypdf_6",
"ocrmypdf_7",
"ocrmypdf_8",
"ocrmypdf_9",
"ocrmypdf_10",
"ocrmypdf_11",
"ocrmypdf_12",
"ocrmypdf_13",
"ocrmypdf_14",
"ocrmypdf_15",
"ocrmypdf_16",
"ocrmypdf_17",
"ocrmypdf_18",
"ocrmypdf_19",
"ocrmypdf_20",
"ocrmypdf_21",
"ocrmypdf_22",
"ocrmypdf_23",
"ocrmypdf_24",
"ocrmypdf_25",
"ocrmypdf_26",
"ocrmypdf_27",
"ocrmypdf_28",
"ocrmypdf_29",
"ocrmypdf_30",
"ocrmypdf_31",
"ocrmypdf_32",
"ocrmypdf_33",
"ocrmypdf_34",
"ocrmypdf_35",
"ocrmypdf_36",
"ocrmypdf_37",
"ocrmypdf_38",
"ocrmypdf_39",
"ocrmypdf_40",
"ocrmypdf_41",
"ocrmypdf_42",
"ocrmypdf_43",
"ocrmypdf_44",
"ocrmypdf_45",
"ocrmypdf_46",
"ocrmypdf_47",
"ocrmypdf_48",
"ocrmypdf_49",
"ocrmypdf_50",
"ocrmypdf_51",
"ocrmypdf_52",
"ocrmypdf_53",
"ocrmypdf_54",
"ocrmypdf_55",
"ocrmypdf_56",
"ocrmypdf_57",
"ocrmypdf_58",
"ocrmypdf_59",
"ocrmypdf_60",
"ocrmypdf_61",
"ocrmypdf_62",
"ocrmypdf_63",
"ocrmypdf_64",
"ocrmypdf_65",
"ocrmypdf_66"
]
]
} |
7459 | replace a scanned pdf file with a searchable pdf file | ocrmypdf {{path/to/file.pdf}} {{path/to/file.pdf}} | [
"ocrmypdf_2"
] | ocrmypdf | ocrmypdf | true | {
"token": [
"|main|"
],
"oracle_man": [
[
"ocrmypdf_2",
"ocrmypdf_3",
"ocrmypdf_4",
"ocrmypdf_5",
"ocrmypdf_6",
"ocrmypdf_7",
"ocrmypdf_8",
"ocrmypdf_9",
"ocrmypdf_10",
"ocrmypdf_11",
"ocrmypdf_12",
"ocrmypdf_13",
"ocrmypdf_14",
"ocrmypdf_15",
"ocrmypdf_16",
"ocrmypdf_17",
"ocrmypdf_18",
"ocrmypdf_19",
"ocrmypdf_20",
"ocrmypdf_21",
"ocrmypdf_22",
"ocrmypdf_23",
"ocrmypdf_24",
"ocrmypdf_25",
"ocrmypdf_26",
"ocrmypdf_27",
"ocrmypdf_28",
"ocrmypdf_29",
"ocrmypdf_30",
"ocrmypdf_31",
"ocrmypdf_32",
"ocrmypdf_33",
"ocrmypdf_34",
"ocrmypdf_35",
"ocrmypdf_36",
"ocrmypdf_37",
"ocrmypdf_38",
"ocrmypdf_39",
"ocrmypdf_40",
"ocrmypdf_41",
"ocrmypdf_42",
"ocrmypdf_43",
"ocrmypdf_44",
"ocrmypdf_45",
"ocrmypdf_46",
"ocrmypdf_47",
"ocrmypdf_48",
"ocrmypdf_49",
"ocrmypdf_50",
"ocrmypdf_51",
"ocrmypdf_52",
"ocrmypdf_53",
"ocrmypdf_54",
"ocrmypdf_55",
"ocrmypdf_56",
"ocrmypdf_57",
"ocrmypdf_58",
"ocrmypdf_59",
"ocrmypdf_60",
"ocrmypdf_61",
"ocrmypdf_62",
"ocrmypdf_63",
"ocrmypdf_64",
"ocrmypdf_65",
"ocrmypdf_66"
]
]
} |
7460 | skip pages of a mixedformat input pdf file that already contain text | ocrmypdf --skip-text {{path/to/input.pdf}} {{path/to/output.pdf}} | [
"ocrmypdf_2",
"ocrmypdf_34",
"ocrmypdf_58",
"ocrmypdf_59"
] | ocrmypdf | ocrmypdf | true | {
"token": [
"--skip-text",
"|main|"
],
"oracle_man": [
[
"ocrmypdf_34",
"ocrmypdf_58",
"ocrmypdf_59"
],
[
"ocrmypdf_2",
"ocrmypdf_3",
"ocrmypdf_4",
"ocrmypdf_5",
"ocrmypdf_6",
"ocrmypdf_7",
"ocrmypdf_8",
"ocrmypdf_9",
"ocrmypdf_10",
"ocrmypdf_11",
"ocrmypdf_12",
"ocrmypdf_13",
"ocrmypdf_14",
"ocrmypdf_15",
"ocrmypdf_16",
"ocrmypdf_17",
"ocrmypdf_18",
"ocrmypdf_19",
"ocrmypdf_20",
"ocrmypdf_21",
"ocrmypdf_22",
"ocrmypdf_23",
"ocrmypdf_24",
"ocrmypdf_25",
"ocrmypdf_26",
"ocrmypdf_27",
"ocrmypdf_28",
"ocrmypdf_29",
"ocrmypdf_30",
"ocrmypdf_31",
"ocrmypdf_32",
"ocrmypdf_33",
"ocrmypdf_34",
"ocrmypdf_35",
"ocrmypdf_36",
"ocrmypdf_37",
"ocrmypdf_38",
"ocrmypdf_39",
"ocrmypdf_40",
"ocrmypdf_41",
"ocrmypdf_42",
"ocrmypdf_43",
"ocrmypdf_44",
"ocrmypdf_45",
"ocrmypdf_46",
"ocrmypdf_47",
"ocrmypdf_48",
"ocrmypdf_49",
"ocrmypdf_50",
"ocrmypdf_51",
"ocrmypdf_52",
"ocrmypdf_53",
"ocrmypdf_54",
"ocrmypdf_55",
"ocrmypdf_56",
"ocrmypdf_57",
"ocrmypdf_58",
"ocrmypdf_59",
"ocrmypdf_60",
"ocrmypdf_61",
"ocrmypdf_62",
"ocrmypdf_63",
"ocrmypdf_64",
"ocrmypdf_65",
"ocrmypdf_66"
]
]
} |
7461 | clean, deskew, and rotate pages of a poor scan | ocrmypdf --clean --deskew --rotate-pages {{path/to/input_file}} {{path/to/output.pdf}} | [
"ocrmypdf_2",
"ocrmypdf_3",
"ocrmypdf_23",
"ocrmypdf_25",
"ocrmypdf_26",
"ocrmypdf_27",
"ocrmypdf_49"
] | ocrmypdf | ocrmypdf | true | {
"token": [
"--clean",
"--deskew",
"--rotate-pages",
"|main|"
],
"oracle_man": [
[
"ocrmypdf_26",
"ocrmypdf_27"
],
[
"ocrmypdf_25"
],
[
"ocrmypdf_3",
"ocrmypdf_23",
"ocrmypdf_49"
],
[
"ocrmypdf_2",
"ocrmypdf_3",
"ocrmypdf_4",
"ocrmypdf_5",
"ocrmypdf_6",
"ocrmypdf_7",
"ocrmypdf_8",
"ocrmypdf_9",
"ocrmypdf_10",
"ocrmypdf_11",
"ocrmypdf_12",
"ocrmypdf_13",
"ocrmypdf_14",
"ocrmypdf_15",
"ocrmypdf_16",
"ocrmypdf_17",
"ocrmypdf_18",
"ocrmypdf_19",
"ocrmypdf_20",
"ocrmypdf_21",
"ocrmypdf_22",
"ocrmypdf_23",
"ocrmypdf_24",
"ocrmypdf_25",
"ocrmypdf_26",
"ocrmypdf_27",
"ocrmypdf_28",
"ocrmypdf_29",
"ocrmypdf_30",
"ocrmypdf_31",
"ocrmypdf_32",
"ocrmypdf_33",
"ocrmypdf_34",
"ocrmypdf_35",
"ocrmypdf_36",
"ocrmypdf_37",
"ocrmypdf_38",
"ocrmypdf_39",
"ocrmypdf_40",
"ocrmypdf_41",
"ocrmypdf_42",
"ocrmypdf_43",
"ocrmypdf_44",
"ocrmypdf_45",
"ocrmypdf_46",
"ocrmypdf_47",
"ocrmypdf_48",
"ocrmypdf_49",
"ocrmypdf_50",
"ocrmypdf_51",
"ocrmypdf_52",
"ocrmypdf_53",
"ocrmypdf_54",
"ocrmypdf_55",
"ocrmypdf_56",
"ocrmypdf_57",
"ocrmypdf_58",
"ocrmypdf_59",
"ocrmypdf_60",
"ocrmypdf_61",
"ocrmypdf_62",
"ocrmypdf_63",
"ocrmypdf_64",
"ocrmypdf_65",
"ocrmypdf_66"
]
]
} |
7462 | set the metadata of the searchable pdf file | ocrmypdf --title "{{title}}" --author "{{author}}" --subject "{{subject}}" --keywords "{{keyword; key phrase; ...}}" {{path/to/input_file}} {{path/to/output.pdf}} | [
"ocrmypdf_2",
"ocrmypdf_3",
"ocrmypdf_18",
"ocrmypdf_19",
"ocrmypdf_20",
"ocrmypdf_21"
] | ocrmypdf | ocrmypdf | true | {
"token": [
"--title",
"--author",
"--subject",
"--keywords",
"|main|"
],
"oracle_man": [
[
"ocrmypdf_3",
"ocrmypdf_18"
],
[
"ocrmypdf_3",
"ocrmypdf_19"
],
[
"ocrmypdf_3",
"ocrmypdf_20"
],
[
"ocrmypdf_3",
"ocrmypdf_21"
],
[
"ocrmypdf_2",
"ocrmypdf_3",
"ocrmypdf_4",
"ocrmypdf_5",
"ocrmypdf_6",
"ocrmypdf_7",
"ocrmypdf_8",
"ocrmypdf_9",
"ocrmypdf_10",
"ocrmypdf_11",
"ocrmypdf_12",
"ocrmypdf_13",
"ocrmypdf_14",
"ocrmypdf_15",
"ocrmypdf_16",
"ocrmypdf_17",
"ocrmypdf_18",
"ocrmypdf_19",
"ocrmypdf_20",
"ocrmypdf_21",
"ocrmypdf_22",
"ocrmypdf_23",
"ocrmypdf_24",
"ocrmypdf_25",
"ocrmypdf_26",
"ocrmypdf_27",
"ocrmypdf_28",
"ocrmypdf_29",
"ocrmypdf_30",
"ocrmypdf_31",
"ocrmypdf_32",
"ocrmypdf_33",
"ocrmypdf_34",
"ocrmypdf_35",
"ocrmypdf_36",
"ocrmypdf_37",
"ocrmypdf_38",
"ocrmypdf_39",
"ocrmypdf_40",
"ocrmypdf_41",
"ocrmypdf_42",
"ocrmypdf_43",
"ocrmypdf_44",
"ocrmypdf_45",
"ocrmypdf_46",
"ocrmypdf_47",
"ocrmypdf_48",
"ocrmypdf_49",
"ocrmypdf_50",
"ocrmypdf_51",
"ocrmypdf_52",
"ocrmypdf_53",
"ocrmypdf_54",
"ocrmypdf_55",
"ocrmypdf_56",
"ocrmypdf_57",
"ocrmypdf_58",
"ocrmypdf_59",
"ocrmypdf_60",
"ocrmypdf_61",
"ocrmypdf_62",
"ocrmypdf_63",
"ocrmypdf_64",
"ocrmypdf_65",
"ocrmypdf_66"
]
]
} |
7463 | display help | ocrmypdf --help | [
"ocrmypdf_2",
"ocrmypdf_8",
"ocrmypdf_45"
] | ocrmypdf | ocrmypdf | true | {
"token": [
"--help",
"|main|"
],
"oracle_man": [
[
"ocrmypdf_8",
"ocrmypdf_45"
],
[
"ocrmypdf_2",
"ocrmypdf_3",
"ocrmypdf_4",
"ocrmypdf_5",
"ocrmypdf_6",
"ocrmypdf_7",
"ocrmypdf_8",
"ocrmypdf_9",
"ocrmypdf_10",
"ocrmypdf_11",
"ocrmypdf_12",
"ocrmypdf_13",
"ocrmypdf_14",
"ocrmypdf_15",
"ocrmypdf_16",
"ocrmypdf_17",
"ocrmypdf_18",
"ocrmypdf_19",
"ocrmypdf_20",
"ocrmypdf_21",
"ocrmypdf_22",
"ocrmypdf_23",
"ocrmypdf_24",
"ocrmypdf_25",
"ocrmypdf_26",
"ocrmypdf_27",
"ocrmypdf_28",
"ocrmypdf_29",
"ocrmypdf_30",
"ocrmypdf_31",
"ocrmypdf_32",
"ocrmypdf_33",
"ocrmypdf_34",
"ocrmypdf_35",
"ocrmypdf_36",
"ocrmypdf_37",
"ocrmypdf_38",
"ocrmypdf_39",
"ocrmypdf_40",
"ocrmypdf_41",
"ocrmypdf_42",
"ocrmypdf_43",
"ocrmypdf_44",
"ocrmypdf_45",
"ocrmypdf_46",
"ocrmypdf_47",
"ocrmypdf_48",
"ocrmypdf_49",
"ocrmypdf_50",
"ocrmypdf_51",
"ocrmypdf_52",
"ocrmypdf_53",
"ocrmypdf_54",
"ocrmypdf_55",
"ocrmypdf_56",
"ocrmypdf_57",
"ocrmypdf_58",
"ocrmypdf_59",
"ocrmypdf_60",
"ocrmypdf_61",
"ocrmypdf_62",
"ocrmypdf_63",
"ocrmypdf_64",
"ocrmypdf_65",
"ocrmypdf_66"
]
]
} |
7469 | display a mirror of a connected device | scrcpy | [
"scrcpy_3"
] | scrcpy | scrcpy | true | {
"token": [
"|main|"
],
"oracle_man": [
[
"scrcpy_3"
]
]
} |
7470 | display a mirror of a specific device based on its id or ip address (find it under the `adb devices` command) | scrcpy --serial {{0123456789abcdef|192.168.0.1:5555}} | [
"scrcpy_3",
"scrcpy_58"
] | scrcpy | scrcpy | true | {
"token": [
"--serial",
"|main|"
],
"oracle_man": [
[
"scrcpy_58"
],
[
"scrcpy_3"
]
]
} |
7471 | start display in fullscreen mode | scrcpy --fullscreen | [
"scrcpy_3",
"scrcpy_21"
] | scrcpy | scrcpy | true | {
"token": [
"--fullscreen",
"|main|"
],
"oracle_man": [
[
"scrcpy_21"
],
[
"scrcpy_3"
]
]
} |
7472 | rotate the display screen. each incremental value adds a 90 degree counterclockwise rotation | scrcpy --rotation {{0|1|2|3}} | [
"scrcpy_3",
"scrcpy_57"
] | scrcpy | scrcpy | true | {
"token": [
"--rotation",
"|main|"
],
"oracle_man": [
[
"scrcpy_57"
],
[
"scrcpy_3"
]
]
} |
7473 | show touches on physical device | scrcpy --show-touches | [
"scrcpy_3",
"scrcpy_67"
] | scrcpy | scrcpy | true | {
"token": [
"--show-touches",
"|main|"
],
"oracle_man": [
[
"scrcpy_67"
],
[
"scrcpy_3"
]
]
} |
7474 | record display screen | scrcpy --record {{path/to/file.mp4}} | [
"scrcpy_3",
"scrcpy_51",
"scrcpy_52",
"scrcpy_53"
] | scrcpy | scrcpy | true | {
"token": [
"--record",
"|main|"
],
"oracle_man": [
[
"scrcpy_51",
"scrcpy_52",
"scrcpy_53"
],
[
"scrcpy_3"
]
]
} |
7475 | set target directory for pushing files to device by drag and drop (nonapk) | scrcpy --push-target {{path/to/directory}} | [
"scrcpy_3",
"scrcpy_48",
"scrcpy_118"
] | scrcpy | scrcpy | true | {
"token": [
"--push-target",
"|main|"
],
"oracle_man": [
[
"scrcpy_48",
"scrcpy_118"
],
[
"scrcpy_3"
]
]
} |
7476 | connect to an ftp server | ftp {{ftp.example.com}} | [
"ftp_26"
] | ftp | ftp | true | {
"token": [
"|main|"
],
"oracle_man": [
[
"ftp_26",
"ftp_27",
"ftp_28",
"ftp_29",
"ftp_30"
]
]
} |
7477 | switch to binary transfer mode (graphics, compressed files, etc) | binary | [
"ftp_26"
] | ftp | ftp | true | {
"token": [
"binary",
"|main|"
],
"oracle_man": [
[],
[
"ftp_26",
"ftp_27",
"ftp_28",
"ftp_29",
"ftp_30"
]
]
} |
7478 | transfer multiple files without prompting for confirmation on every file | prompt off | [
"ftp_26"
] | ftp | ftp | true | {
"token": [
"prompt",
"off",
"|main|"
],
"oracle_man": [
[],
[],
[
"ftp_26",
"ftp_27",
"ftp_28",
"ftp_29",
"ftp_30"
]
]
} |
7479 | download multiple files (glob expression) | mget {{*.png}} | [
"ftp_26"
] | ftp | ftp | true | {
"token": [
"mget",
"|main|"
],
"oracle_man": [
[],
[
"ftp_26",
"ftp_27",
"ftp_28",
"ftp_29",
"ftp_30"
]
]
} |
7480 | upload multiple files (glob expression) | mput {{*.zip}} | [
"ftp_26"
] | ftp | ftp | true | {
"token": [
"mput",
"|main|"
],
"oracle_man": [
[],
[
"ftp_26",
"ftp_27",
"ftp_28",
"ftp_29",
"ftp_30"
]
]
} |
7481 | delete multiple files on the remote server | mdelete {{*.txt}} | [
"ftp_26"
] | ftp | ftp | true | {
"token": [
"mdelete",
"|main|"
],
"oracle_man": [
[],
[
"ftp_26",
"ftp_27",
"ftp_28",
"ftp_29",
"ftp_30"
]
]
} |
7482 | rename a file on the remote server | rename {{original_filename}} {{new_filename}} | [
"ftp_26"
] | ftp | ftp | true | {
"token": [
"rename",
"|main|"
],
"oracle_man": [
[],
[
"ftp_26",
"ftp_27",
"ftp_28",
"ftp_29",
"ftp_30"
]
]
} |
7483 | show commits (and their messages) with equivalent commits upstream | git cherry -v | [
"git-cherry_2",
"git-cherry_3",
"git-cherry_6",
"git-cherry_11",
"git-cherry_13",
"git-cherry_15",
"git-cherry_17",
"git-cherry_20",
"git-cherry_22"
] | git-cherry | git-cherry | true | {
"token": [
"git",
"cherry",
"-v",
"|main|"
],
"oracle_man": [
[
"git-cherry_2",
"git-cherry_11",
"git-cherry_13",
"git-cherry_15",
"git-cherry_17",
"git-cherry_20",
"git-cherry_22"
],
[
"git-cherry_2",
"git-cherry_17",
"git-cherry_22"
],
[
"git-cherry_2",
"git-cherry_6",
"git-cherry_13"
],
[
"git-cherry_3",
"git-cherry_4",
"git-cherry_5"
]
]
} |
7484 | specify a different upstream and topic branch | git cherry {{origin}} {{topic}} | [
"git-cherry_2",
"git-cherry_3",
"git-cherry_11",
"git-cherry_13",
"git-cherry_15",
"git-cherry_17",
"git-cherry_20",
"git-cherry_22"
] | git-cherry | git-cherry | true | {
"token": [
"git",
"cherry",
"|main|"
],
"oracle_man": [
[
"git-cherry_2",
"git-cherry_11",
"git-cherry_13",
"git-cherry_15",
"git-cherry_17",
"git-cherry_20",
"git-cherry_22"
],
[
"git-cherry_2",
"git-cherry_17",
"git-cherry_22"
],
[
"git-cherry_3",
"git-cherry_4",
"git-cherry_5"
]
]
} |
7485 | limit commits to those within a given limit | git cherry {{origin}} {{topic}} {{base}} | [
"git-cherry_2",
"git-cherry_3",
"git-cherry_11",
"git-cherry_13",
"git-cherry_15",
"git-cherry_17",
"git-cherry_20",
"git-cherry_22"
] | git-cherry | git-cherry | true | {
"token": [
"git",
"cherry",
"|main|"
],
"oracle_man": [
[
"git-cherry_2",
"git-cherry_11",
"git-cherry_13",
"git-cherry_15",
"git-cherry_17",
"git-cherry_20",
"git-cherry_22"
],
[
"git-cherry_2",
"git-cherry_17",
"git-cherry_22"
],
[
"git-cherry_3",
"git-cherry_4",
"git-cherry_5"
]
]
} |
7494 | show the environment | env | [
"env_2"
] | env | env | true | {
"token": [
"|main|"
],
"oracle_man": [
[
"env_2",
"env_3"
]
]
} |
7495 | run a program. often used in scripts after the shebang (#!) for looking up the path to the program | env {{program}} | [
"env_2"
] | env | env | true | {
"token": [
"|main|"
],
"oracle_man": [
[
"env_2",
"env_3"
]
]
} |
7496 | clear the environment and run a program | env -i {{program}} | [
"env_2",
"env_5",
"env_30"
] | env | env | true | {
"token": [
"-i",
"|main|"
],
"oracle_man": [
[
"env_5",
"env_30"
],
[
"env_2",
"env_3"
]
]
} |
7497 | remove variable from the environment and run a program | env -u {{variable}} {{program}} | [
"env_2",
"env_17",
"env_18"
] | env | env | true | {
"token": [
"-u",
"|main|"
],
"oracle_man": [
[
"env_17",
"env_18"
],
[
"env_2",
"env_3"
]
]
} |
7498 | set a variable and run a program | env {{variable}}={{value}} {{program}} | [
"env_2"
] | env | env | true | {
"token": [
"|main|"
],
"oracle_man": [
[
"env_2",
"env_3"
]
]
} |
7499 | set multiple variables and run a program | env {{variable1}}={{value}} {{variable2}}={{value}} {{variable3}}={{value}} {{program}} | [
"env_2"
] | env | env | true | {
"token": [
"|main|"
],
"oracle_man": [
[
"env_2",
"env_3"
]
]
} |
7522 | copy files to the destination | install {{path/to/source}} {{path/to/destination}} | [
"install_3"
] | install | install | true | {
"token": [
"|main|"
],
"oracle_man": [
[
"install_3",
"install_4",
"install_5",
"install_6",
"install_7",
"install_8",
"install_9",
"install_10",
"install_11",
"install_12",
"install_13",
"install_14",
"install_15",
"install_16",
"install_17",
"install_18",
"install_19",
"install_20",
"install_21",
"install_22",
"install_23",
"install_24",
"install_25",
"install_26",
"install_27",
"install_28",
"install_29",
"install_30",
"install_31"
]
]
} |
7523 | copy files to the destination, setting their ownership | install -o {{user}} {{path/to/source}} {{path/to/destination}} | [
"install_3",
"install_14"
] | install | install | true | {
"token": [
"-o",
"|main|"
],
"oracle_man": [
[
"install_14"
],
[
"install_3",
"install_4",
"install_5",
"install_6",
"install_7",
"install_8",
"install_9",
"install_10",
"install_11",
"install_12",
"install_13",
"install_14",
"install_15",
"install_16",
"install_17",
"install_18",
"install_19",
"install_20",
"install_21",
"install_22",
"install_23",
"install_24",
"install_25",
"install_26",
"install_27",
"install_28",
"install_29",
"install_30",
"install_31"
]
]
} |
7524 | copy files to the destination, setting their group ownership | install -g {{user}} {{path/to/source}} {{path/to/destination}} | [
"install_3",
"install_12"
] | install | install | true | {
"token": [
"-g",
"|main|"
],
"oracle_man": [
[
"install_3",
"install_12"
],
[
"install_3",
"install_4",
"install_5",
"install_6",
"install_7",
"install_8",
"install_9",
"install_10",
"install_11",
"install_12",
"install_13",
"install_14",
"install_15",
"install_16",
"install_17",
"install_18",
"install_19",
"install_20",
"install_21",
"install_22",
"install_23",
"install_24",
"install_25",
"install_26",
"install_27",
"install_28",
"install_29",
"install_30",
"install_31"
]
]
} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.