question_id
stringlengths 1
5
| nl
stringlengths 4
218
| cmd
stringlengths 1
231
| oracle_man
list | cmd_name
stringlengths 1
24
| tldr_cmd_name
stringlengths 1
24
| manual_exist
bool 1
class | matching_info
dict |
---|---|---|---|---|---|---|---|
5018
|
print all items from the beginning of the line until the 3rd item (exclusive)
|
choose --exclusive :{{2}}
|
[
"choose_5"
] |
choose
|
choose
| true |
{
"token": [
"--exclusive",
"|main|"
],
"oracle_man": [
[],
[
"choose_5",
"choose_6",
"choose_7",
"choose_8",
"choose_9",
"choose_10",
"choose_11",
"choose_12",
"choose_13"
]
]
}
|
5019
|
print all items from the 3rd to the end of the line
|
choose {{2}}:
|
[
"choose_5"
] |
choose
|
choose
| true |
{
"token": [
"|main|"
],
"oracle_man": [
[
"choose_5",
"choose_6",
"choose_7",
"choose_8",
"choose_9",
"choose_10",
"choose_11",
"choose_12",
"choose_13"
]
]
}
|
5020
|
print the last item from a line
|
choose {{-1}}
|
[
"choose_5"
] |
choose
|
choose
| true |
{
"token": [
"|main|"
],
"oracle_man": [
[
"choose_5",
"choose_6",
"choose_7",
"choose_8",
"choose_9",
"choose_10",
"choose_11",
"choose_12",
"choose_13"
]
]
}
|
5021
|
extract the second column from a csv file
|
csvtool --column {{2}} {{path/to/file.csv}}
|
[
"csvtool_3"
] |
csvtool
|
csvtool
| true |
{
"token": [
"--column",
"|main|"
],
"oracle_man": [
[],
[
"csvtool_3",
"csvtool_4",
"csvtool_5"
]
]
}
|
5022
|
extract the second and fourth columns from a csv file
|
csvtool --column {{2,4}} {{path/to/file.csv}}
|
[
"csvtool_3"
] |
csvtool
|
csvtool
| true |
{
"token": [
"--column",
"|main|"
],
"oracle_man": [
[],
[
"csvtool_3",
"csvtool_4",
"csvtool_5"
]
]
}
|
5023
|
extract lines from a csv file where the second column exactly matches 'foo'
|
csvtool --column {{2}} --search '{{^Foo$}}' {{path/to/file.csv}}
|
[
"csvtool_3"
] |
csvtool
|
csvtool
| true |
{
"token": [
"--column",
"--search",
"|main|"
],
"oracle_man": [
[],
[],
[
"csvtool_3",
"csvtool_4",
"csvtool_5"
]
]
}
|
5024
|
extract lines from a csv file where the second column starts with 'bar'
|
csvtool --column {{2}} --search '{{^Bar}}' {{path/to/file.csv}}
|
[
"csvtool_3"
] |
csvtool
|
csvtool
| true |
{
"token": [
"--column",
"--search",
"|main|"
],
"oracle_man": [
[],
[],
[
"csvtool_3",
"csvtool_4",
"csvtool_5"
]
]
}
|
5025
|
find lines in a csv file where the second column ends with 'baz' and then extract the third and sixth columns
|
csvtool --column {{2}} --search '{{Baz$}}' {{path/to/file.csv}} | csvtool --no-header --column {{3,6}}
|
[
"csvtool_3"
] |
csvtool
|
csvtool
| true |
{
"token": [
"--column",
"--search",
"--no-header",
"|main|"
],
"oracle_man": [
[],
[],
[],
[
"csvtool_3",
"csvtool_4",
"csvtool_5"
]
]
}
|
5026
|
rename all files with a certain extension to a different extension
|
mmv "*{{.old_extension}}" "#1{{.new_extension}}"
|
[
"mmv_11"
] |
mmv
|
mmv
| true |
{
"token": [
"|main|"
],
"oracle_man": [
[
"mmv_11",
"mmv_12",
"mmv_13",
"mmv_14",
"mmv_15",
"mmv_16",
"mmv_17",
"mmv_18",
"mmv_19",
"mmv_20",
"mmv_21",
"mmv_22",
"mmv_23",
"mmv_24",
"mmv_25",
"mmv_26",
"mmv_27",
"mmv_28",
"mmv_29",
"mmv_30",
"mmv_31",
"mmv_32",
"mmv_33",
"mmv_34",
"mmv_35",
"mmv_36",
"mmv_37",
"mmv_38",
"mmv_39",
"mmv_40",
"mmv_41",
"mmv_42",
"mmv_43",
"mmv_44",
"mmv_45",
"mmv_46",
"mmv_47",
"mmv_48",
"mmv_49",
"mmv_50",
"mmv_51",
"mmv_52",
"mmv_53",
"mmv_54",
"mmv_55",
"mmv_56",
"mmv_57",
"mmv_58",
"mmv_59",
"mmv_60",
"mmv_61",
"mmv_62",
"mmv_63"
]
]
}
|
5027
|
copy `report6part4.txt` to `./french/rapport6partie4.txt` along with all similarly named files
|
mmv -c "{{report*part*.txt}}" "{{./french/rapport#1partie#2.txt}}"
|
[
"mmv_11",
"mmv_15",
"mmv_20"
] |
mmv
|
mmv
| true |
{
"token": [
"-c",
"|main|"
],
"oracle_man": [
[
"mmv_15",
"mmv_20"
],
[
"mmv_11",
"mmv_12",
"mmv_13",
"mmv_14",
"mmv_15",
"mmv_16",
"mmv_17",
"mmv_18",
"mmv_19",
"mmv_20",
"mmv_21",
"mmv_22",
"mmv_23",
"mmv_24",
"mmv_25",
"mmv_26",
"mmv_27",
"mmv_28",
"mmv_29",
"mmv_30",
"mmv_31",
"mmv_32",
"mmv_33",
"mmv_34",
"mmv_35",
"mmv_36",
"mmv_37",
"mmv_38",
"mmv_39",
"mmv_40",
"mmv_41",
"mmv_42",
"mmv_43",
"mmv_44",
"mmv_45",
"mmv_46",
"mmv_47",
"mmv_48",
"mmv_49",
"mmv_50",
"mmv_51",
"mmv_52",
"mmv_53",
"mmv_54",
"mmv_55",
"mmv_56",
"mmv_57",
"mmv_58",
"mmv_59",
"mmv_60",
"mmv_61",
"mmv_62",
"mmv_63"
]
]
}
|
5028
|
append all `.txt` files into one file
|
mmv -a "{{*.txt}}" "{{all.txt}}"
|
[
"mmv_11",
"mmv_15",
"mmv_22"
] |
mmv
|
mmv
| true |
{
"token": [
"-a",
"|main|"
],
"oracle_man": [
[
"mmv_15",
"mmv_22"
],
[
"mmv_11",
"mmv_12",
"mmv_13",
"mmv_14",
"mmv_15",
"mmv_16",
"mmv_17",
"mmv_18",
"mmv_19",
"mmv_20",
"mmv_21",
"mmv_22",
"mmv_23",
"mmv_24",
"mmv_25",
"mmv_26",
"mmv_27",
"mmv_28",
"mmv_29",
"mmv_30",
"mmv_31",
"mmv_32",
"mmv_33",
"mmv_34",
"mmv_35",
"mmv_36",
"mmv_37",
"mmv_38",
"mmv_39",
"mmv_40",
"mmv_41",
"mmv_42",
"mmv_43",
"mmv_44",
"mmv_45",
"mmv_46",
"mmv_47",
"mmv_48",
"mmv_49",
"mmv_50",
"mmv_51",
"mmv_52",
"mmv_53",
"mmv_54",
"mmv_55",
"mmv_56",
"mmv_57",
"mmv_58",
"mmv_59",
"mmv_60",
"mmv_61",
"mmv_62",
"mmv_63"
]
]
}
|
5029
|
convert dates in filenames from "mdy" format to "dmy" format
|
mmv "{{[0-1][0-9]-[0-3][0-9]-[0-9][0-9][0-9][0-9].txt}}" "{{#3#4-#1#2-#5#6#7#8.txt}}"
|
[
"mmv_11"
] |
mmv
|
mmv
| true |
{
"token": [
"|main|"
],
"oracle_man": [
[
"mmv_11",
"mmv_12",
"mmv_13",
"mmv_14",
"mmv_15",
"mmv_16",
"mmv_17",
"mmv_18",
"mmv_19",
"mmv_20",
"mmv_21",
"mmv_22",
"mmv_23",
"mmv_24",
"mmv_25",
"mmv_26",
"mmv_27",
"mmv_28",
"mmv_29",
"mmv_30",
"mmv_31",
"mmv_32",
"mmv_33",
"mmv_34",
"mmv_35",
"mmv_36",
"mmv_37",
"mmv_38",
"mmv_39",
"mmv_40",
"mmv_41",
"mmv_42",
"mmv_43",
"mmv_44",
"mmv_45",
"mmv_46",
"mmv_47",
"mmv_48",
"mmv_49",
"mmv_50",
"mmv_51",
"mmv_52",
"mmv_53",
"mmv_54",
"mmv_55",
"mmv_56",
"mmv_57",
"mmv_58",
"mmv_59",
"mmv_60",
"mmv_61",
"mmv_62",
"mmv_63"
]
]
}
|
5030
|
deploy a dockerized application to kubernetes
|
kompose up -f {{docker-compose.yml}}
|
[
"kompose_3"
] |
kompose
|
kompose
| true |
{
"token": [
"up",
"-f",
"|main|"
],
"oracle_man": [
[],
[],
[
"kompose_3",
"kompose_4"
]
]
}
|
5031
|
delete instantiated services/deployments from kubernetes
|
kompose down -f {{docker-compose.yml}}
|
[
"kompose_3"
] |
kompose
|
kompose
| true |
{
"token": [
"down",
"-f",
"|main|"
],
"oracle_man": [
[],
[],
[
"kompose_3",
"kompose_4"
]
]
}
|
5032
|
convert a dockercompose file into kubernetes resources file
|
kompose convert -f {{docker-compose.yml}}
|
[
"kompose_3"
] |
kompose
|
kompose
| true |
{
"token": [
"convert",
"-f",
"|main|"
],
"oracle_man": [
[],
[],
[
"kompose_3",
"kompose_4"
]
]
}
|
5033
|
first import feed urls from an opml file
|
newsboat -i {{my-feeds.xml}}
|
[
"newsboat_2",
"newsboat_3",
"newsboat_7",
"newsboat_11",
"newsboat_19",
"newsboat_22",
"newsboat_23",
"newsboat_36",
"newsboat_64",
"newsboat_88",
"newsboat_99",
"newsboat_118",
"newsboat_123",
"newsboat_132",
"newsboat_133",
"newsboat_140",
"newsboat_160",
"newsboat_227",
"newsboat_228",
"newsboat_229",
"newsboat_230",
"newsboat_231",
"newsboat_283",
"newsboat_315"
] |
newsboat
|
newsboat
| true |
{
"token": [
"-i",
"|main|"
],
"oracle_man": [
[
"newsboat_2",
"newsboat_7",
"newsboat_11",
"newsboat_19",
"newsboat_22",
"newsboat_23",
"newsboat_36",
"newsboat_64",
"newsboat_88",
"newsboat_99",
"newsboat_118",
"newsboat_123",
"newsboat_132",
"newsboat_133",
"newsboat_140",
"newsboat_160",
"newsboat_227",
"newsboat_228",
"newsboat_229",
"newsboat_230",
"newsboat_231",
"newsboat_283",
"newsboat_315"
],
[
"newsboat_3"
]
]
}
|
5034
|
alternatively, add feeds manually
|
echo {{http://example.com/path/to/feed}} >> "${HOME}/.newsboat/urls"
|
[
"newsboat_3"
] |
newsboat
|
newsboat
| true |
{
"token": [
"echo",
"${HOME}/.newsboat/urls",
"|main|"
],
"oracle_man": [
[],
[],
[
"newsboat_3"
]
]
}
|
5035
|
start newsboat and refresh all feeds on startup
|
newsboat -r
|
[
"newsboat_2",
"newsboat_3",
"newsboat_5",
"newsboat_7",
"newsboat_9",
"newsboat_22",
"newsboat_41",
"newsboat_60",
"newsboat_70",
"newsboat_75",
"newsboat_80",
"newsboat_112",
"newsboat_130",
"newsboat_132",
"newsboat_176",
"newsboat_192",
"newsboat_193",
"newsboat_194",
"newsboat_217",
"newsboat_218",
"newsboat_219",
"newsboat_229",
"newsboat_231",
"newsboat_234",
"newsboat_235",
"newsboat_266"
] |
newsboat
|
newsboat
| true |
{
"token": [
"-r",
"|main|"
],
"oracle_man": [
[
"newsboat_2",
"newsboat_5",
"newsboat_7",
"newsboat_9",
"newsboat_22",
"newsboat_41",
"newsboat_60",
"newsboat_70",
"newsboat_75",
"newsboat_80",
"newsboat_112",
"newsboat_130",
"newsboat_132",
"newsboat_176",
"newsboat_192",
"newsboat_193",
"newsboat_194",
"newsboat_217",
"newsboat_218",
"newsboat_219",
"newsboat_229",
"newsboat_231",
"newsboat_234",
"newsboat_235",
"newsboat_266"
],
[
"newsboat_3"
]
]
}
|
5036
|
see keyboard shortcuts (the most relevant are visible in the status line)
|
?
|
[
"newsboat_3"
] |
newsboat
|
newsboat
| true |
{
"token": [
"?",
"|main|"
],
"oracle_man": [
[],
[
"newsboat_3"
]
]
}
|
5041
|
send an email using the default account configured in `~/.msmtprc`
|
echo "{{Hello world}}" | msmtp {{to@example.org}}
|
[
"msmtp_6"
] |
msmtp
|
msmtp
| true |
{
"token": [
"echo",
"|main|"
],
"oracle_man": [
[],
[
"msmtp_6"
]
]
}
|
5042
|
send an email using a specific account configured in `~/.msmtprc`
|
echo "{{Hello world}}" | msmtp --account={{account_name}} {{to@example.org}}
|
[
"msmtp_6",
"msmtp_20",
"msmtp_21",
"msmtp_45",
"msmtp_65",
"msmtp_67"
] |
msmtp
|
msmtp
| true |
{
"token": [
"echo",
"--account",
"|main|"
],
"oracle_man": [
[],
[
"msmtp_20",
"msmtp_21",
"msmtp_45",
"msmtp_65",
"msmtp_67"
],
[
"msmtp_6"
]
]
}
|
5043
|
send an email without a configured account. the password should be specified in the `~/.msmtprc` file
|
echo "{{Hello world}}" | msmtp --host={{localhost}} --port={{999}} --from={{from@example.org}} {{to@example.org}}
|
[
"msmtp_6",
"msmtp_20",
"msmtp_21",
"msmtp_22",
"msmtp_45",
"msmtp_66",
"msmtp_67",
"msmtp_102",
"msmtp_123",
"msmtp_135"
] |
msmtp
|
msmtp
| true |
{
"token": [
"echo",
"--host",
"--port",
"--from",
"|main|"
],
"oracle_man": [
[],
[
"msmtp_20",
"msmtp_21",
"msmtp_45",
"msmtp_66",
"msmtp_67",
"msmtp_123",
"msmtp_135"
],
[
"msmtp_22"
],
[
"msmtp_45",
"msmtp_67",
"msmtp_102"
],
[
"msmtp_6"
]
]
}
|
5044
|
view documentation for the original command
|
tldr pio project
|
[
"pio_1",
"pio_269",
"pio_270",
"pio_293",
"pio_458",
"pio_490",
"pio_498",
"pio_522",
"pio_741",
"pio_742",
"pio_828",
"pio_1039",
"pio_1060",
"pio_1061",
"pio_1087",
"pio_1088",
"pio_1093",
"pio_1094",
"pio_1105",
"pio_1110",
"pio_1128",
"pio_1131",
"pio_1137",
"pio_1141",
"pio_1143",
"pio_1144",
"pio_1146",
"pio_1147",
"pio_1500",
"pio_1609",
"pio_1810",
"pio_1929",
"pio_2606",
"pio_2714",
"pio_2760",
"pio_2772",
"pio_2925",
"pio_2948",
"pio_3072",
"pio_3239",
"pio_3252",
"pio_3724",
"pio_4106",
"pio_4372",
"pio_5756",
"pio_5763",
"pio_5789",
"pio_5803",
"pio_5805",
"pio_5810",
"pio_5937",
"pio_6130",
"pio_6253",
"pio_27069",
"pio_27070",
"pio_27136",
"pio_27137",
"pio_27459",
"pio_27462",
"pio_27467",
"pio_27480",
"pio_27483",
"pio_27488",
"pio_27524",
"pio_27530",
"pio_27549",
"pio_27552",
"pio_27557",
"pio_27575",
"pio_27577",
"pio_27580",
"pio_27595",
"pio_27599",
"pio_27602",
"pio_27628",
"pio_27631",
"pio_27634",
"pio_27637",
"pio_27680",
"pio_27683",
"pio_27723",
"pio_27726",
"pio_27731",
"pio_28503",
"pio_28530",
"pio_28536",
"pio_28568",
"pio_28607",
"pio_28611",
"pio_28619",
"pio_28666",
"pio_28672",
"pio_28686",
"pio_28723",
"pio_28742",
"pio_28743",
"pio_28752",
"pio_28836",
"pio_28931",
"pio_28933",
"pio_29019",
"pio_29047",
"pio_29054",
"pio_29075",
"pio_29103",
"pio_29137",
"pio_29152",
"pio_29177",
"pio_29181",
"pio_29318",
"pio_29351"
] |
pio
|
pio-init
| true |
{
"token": [
"tldr",
"project",
"|main|"
],
"oracle_man": [
[],
[
"pio_269",
"pio_270",
"pio_293",
"pio_458",
"pio_490",
"pio_498",
"pio_522",
"pio_741",
"pio_742",
"pio_828",
"pio_1039",
"pio_1060",
"pio_1061",
"pio_1087",
"pio_1088",
"pio_1093",
"pio_1094",
"pio_1105",
"pio_1110",
"pio_1128",
"pio_1131",
"pio_1137",
"pio_1141",
"pio_1143",
"pio_1144",
"pio_1146",
"pio_1147",
"pio_1500",
"pio_1609",
"pio_1810",
"pio_1929",
"pio_2606",
"pio_2714",
"pio_2760",
"pio_2772",
"pio_2925",
"pio_2948",
"pio_3072",
"pio_3239",
"pio_3252",
"pio_3724",
"pio_4106",
"pio_4372",
"pio_5756",
"pio_5763",
"pio_5789",
"pio_5803",
"pio_5805",
"pio_5810",
"pio_5937",
"pio_6130",
"pio_6253",
"pio_27069",
"pio_27070",
"pio_27136",
"pio_27137",
"pio_27459",
"pio_27462",
"pio_27467",
"pio_27480",
"pio_27483",
"pio_27488",
"pio_27524",
"pio_27530",
"pio_27549",
"pio_27552",
"pio_27557",
"pio_27575",
"pio_27577",
"pio_27580",
"pio_27595",
"pio_27599",
"pio_27602",
"pio_27628",
"pio_27631",
"pio_27634",
"pio_27637",
"pio_27680",
"pio_27683",
"pio_27723",
"pio_27726",
"pio_27731",
"pio_28503",
"pio_28530",
"pio_28536",
"pio_28568",
"pio_28607",
"pio_28611",
"pio_28619",
"pio_28666",
"pio_28672",
"pio_28686",
"pio_28723",
"pio_28742",
"pio_28743",
"pio_28752",
"pio_28836",
"pio_28931",
"pio_28933",
"pio_29019",
"pio_29047",
"pio_29054",
"pio_29075",
"pio_29103",
"pio_29137",
"pio_29152",
"pio_29177",
"pio_29181",
"pio_29318",
"pio_29351"
],
[
"pio_1",
"pio_2",
"pio_3",
"pio_4",
"pio_5",
"pio_6",
"pio_7",
"pio_8"
]
]
}
|
5045
|
start an interactive lua shell
|
lua
|
[
"lua_3"
] |
lua
|
lua
| true |
{
"token": [
"|main|"
],
"oracle_man": [
[
"lua_3",
"lua_4",
"lua_5",
"lua_6"
]
]
}
|
5046
|
execute a lua script
|
lua {{script_name.lua}} {{--optional-argument}}
|
[
"lua_3"
] |
lua
|
lua
| true |
{
"token": [
"|main|"
],
"oracle_man": [
[
"lua_3",
"lua_4",
"lua_5",
"lua_6"
]
]
}
|
5047
|
execute a lua expression
|
lua -e '{{print( "Hello World" )}}'
|
[
"lua_3",
"lua_7"
] |
lua
|
lua
| true |
{
"token": [
"-e",
"|main|"
],
"oracle_man": [
[
"lua_7"
],
[
"lua_3",
"lua_4",
"lua_5",
"lua_6"
]
]
}
|
5067
|
parse and execute a perl script
|
perl {{script.pl}}
|
[
"perl_41"
] |
perl
|
perl
| true |
{
"token": [
"|main|"
],
"oracle_man": [
[
"perl_41",
"perl_42",
"perl_43",
"perl_44"
]
]
}
|
5068
|
check syntax errors on a perl script
|
perl -c {{script.pl}}
|
[
"perl_2",
"perl_41",
"perl_44"
] |
perl
|
perl
| true |
{
"token": [
"-c",
"|main|"
],
"oracle_man": [
[
"perl_2",
"perl_44"
],
[
"perl_41",
"perl_42",
"perl_43",
"perl_44"
]
]
}
|
5069
|
parse and execute a perl statement
|
perl -e {{perl_statement}}
|
[
"perl_2",
"perl_41"
] |
perl
|
perl
| true |
{
"token": [
"-e",
"|main|"
],
"oracle_man": [
[
"perl_2"
],
[
"perl_41",
"perl_42",
"perl_43",
"perl_44"
]
]
}
|
5070
|
run a perl script in debug mode, using `perldebug`
|
perl -d {{script.pl}}
|
[
"perl_2",
"perl_36",
"perl_41"
] |
perl
|
perl
| true |
{
"token": [
"-d",
"|main|"
],
"oracle_man": [
[
"perl_2",
"perl_36"
],
[
"perl_41",
"perl_42",
"perl_43",
"perl_44"
]
]
}
|
5071
|
loo[p] over all lines of a file, editing them [i]nplace using a find/replace [e]xpression
|
perl -p -i -e 's/{{find}}/{{replace}}/g' {{filename}}
|
[
"perl_2",
"perl_15",
"perl_37",
"perl_41",
"perl_43"
] |
perl
|
perl
| true |
{
"token": [
"-p",
"-i",
"-e",
"|main|"
],
"oracle_man": [
[
"perl_2",
"perl_37",
"perl_43"
],
[
"perl_2",
"perl_15"
],
[
"perl_2"
],
[
"perl_41",
"perl_42",
"perl_43",
"perl_44"
]
]
}
|
5072
|
run a find/replace expression on a file, saving the original file with a given extension
|
perl -p -i'.old' -e 's/{{find}}/{{replace}}/g' {{filename}}
|
[
"perl_2",
"perl_36",
"perl_37",
"perl_41",
"perl_43"
] |
perl
|
perl
| true |
{
"token": [
"-p",
"-i.old",
"-e",
"|main|"
],
"oracle_man": [
[
"perl_2",
"perl_37",
"perl_43"
],
[
"perl_2",
"perl_36"
],
[
"perl_2"
],
[
"perl_41",
"perl_42",
"perl_43",
"perl_44"
]
]
}
|
5073
|
run a multiline find/replace expression on a file, and save the result in another file
|
perl -p0e 's/{{foo\nbar}}/{{foobar}}/g' {{input_file}} > {{output_file}}
|
[
"perl_2",
"perl_41"
] |
perl
|
perl
| true |
{
"token": [
"-p0e",
"|main|"
],
"oracle_man": [
[
"perl_2"
],
[
"perl_41",
"perl_42",
"perl_43",
"perl_44"
]
]
}
|
5074
|
run a regular expression on stdin, printing out the first capture group for each line
|
cat {{path/to/input_file}} | perl -nle 'if (/.*({{foo}}).*/) {print "$1"; last;}'
|
[
"perl_2",
"perl_40",
"perl_41"
] |
perl
|
perl
| true |
{
"token": [
"cat",
"-nle",
"if",
"{print",
"$1;",
"last;}",
"|main|"
],
"oracle_man": [
[],
[
"perl_2"
],
[
"perl_40"
],
[],
[],
[],
[
"perl_41",
"perl_42",
"perl_43",
"perl_44"
]
]
}
|
5075
|
decode an apk file
|
apktool d {{file.apk}}
|
[
"apktool_2",
"apktool_8"
] |
apktool
|
apktool
| true |
{
"token": [
"d",
"|main|"
],
"oracle_man": [
[
"apktool_8"
],
[
"apktool_2",
"apktool_3",
"apktool_4",
"apktool_5",
"apktool_6",
"apktool_7",
"apktool_8",
"apktool_9",
"apktool_10",
"apktool_11",
"apktool_12",
"apktool_13",
"apktool_14",
"apktool_15",
"apktool_16",
"apktool_17",
"apktool_18",
"apktool_19"
]
]
}
|
5076
|
build an apk file from a directory
|
apktool b {{path/to/directory}}
|
[
"apktool_2",
"apktool_15"
] |
apktool
|
apktool
| true |
{
"token": [
"b",
"|main|"
],
"oracle_man": [
[
"apktool_15"
],
[
"apktool_2",
"apktool_3",
"apktool_4",
"apktool_5",
"apktool_6",
"apktool_7",
"apktool_8",
"apktool_9",
"apktool_10",
"apktool_11",
"apktool_12",
"apktool_13",
"apktool_14",
"apktool_15",
"apktool_16",
"apktool_17",
"apktool_18",
"apktool_19"
]
]
}
|
5077
|
install and store frameworks
|
apktool if {{framework.apk}}
|
[
"apktool_2",
"apktool_5"
] |
apktool
|
apktool
| true |
{
"token": [
"if",
"|main|"
],
"oracle_man": [
[
"apktool_5"
],
[
"apktool_2",
"apktool_3",
"apktool_4",
"apktool_5",
"apktool_6",
"apktool_7",
"apktool_8",
"apktool_9",
"apktool_10",
"apktool_11",
"apktool_12",
"apktool_13",
"apktool_14",
"apktool_15",
"apktool_16",
"apktool_17",
"apktool_18",
"apktool_19"
]
]
}
|
5078
|
display the section headers of a given binary
|
wasm-objdump -h {{file.wasm}}
|
[
"wasm-objdump_3",
"wasm-objdump_5",
"wasm-objdump_12"
] |
wasm-objdump
|
wasm-objdump
| true |
{
"token": [
"-h",
"|main|"
],
"oracle_man": [
[
"wasm-objdump_5",
"wasm-objdump_12"
],
[
"wasm-objdump_3",
"wasm-objdump_4",
"wasm-objdump_5",
"wasm-objdump_6",
"wasm-objdump_7",
"wasm-objdump_8",
"wasm-objdump_9",
"wasm-objdump_10",
"wasm-objdump_11",
"wasm-objdump_12"
]
]
}
|
5079
|
display the entire disassembled output of a given binary
|
wasm-objdump -d {{file.wasm}}
|
[
"wasm-objdump_3",
"wasm-objdump_8",
"wasm-objdump_9",
"wasm-objdump_10"
] |
wasm-objdump
|
wasm-objdump
| true |
{
"token": [
"-d",
"|main|"
],
"oracle_man": [
[
"wasm-objdump_8",
"wasm-objdump_9",
"wasm-objdump_10"
],
[
"wasm-objdump_3",
"wasm-objdump_4",
"wasm-objdump_5",
"wasm-objdump_6",
"wasm-objdump_7",
"wasm-objdump_8",
"wasm-objdump_9",
"wasm-objdump_10",
"wasm-objdump_11",
"wasm-objdump_12"
]
]
}
|
5080
|
display the details of each section
|
wasm-objdump --details {{file.wasm}}
|
[
"wasm-objdump_3",
"wasm-objdump_10"
] |
wasm-objdump
|
wasm-objdump
| true |
{
"token": [
"--details",
"|main|"
],
"oracle_man": [
[
"wasm-objdump_10"
],
[
"wasm-objdump_3",
"wasm-objdump_4",
"wasm-objdump_5",
"wasm-objdump_6",
"wasm-objdump_7",
"wasm-objdump_8",
"wasm-objdump_9",
"wasm-objdump_10",
"wasm-objdump_11",
"wasm-objdump_12"
]
]
}
|
5081
|
display the details of a given section
|
wasm-objdump --section '{{import}}' --details {{file.wasm}}
|
[
"wasm-objdump_3",
"wasm-objdump_6",
"wasm-objdump_10"
] |
wasm-objdump
|
wasm-objdump
| true |
{
"token": [
"--section",
"--details",
"|main|"
],
"oracle_man": [
[
"wasm-objdump_6"
],
[
"wasm-objdump_10"
],
[
"wasm-objdump_3",
"wasm-objdump_4",
"wasm-objdump_5",
"wasm-objdump_6",
"wasm-objdump_7",
"wasm-objdump_8",
"wasm-objdump_9",
"wasm-objdump_10",
"wasm-objdump_11",
"wasm-objdump_12"
]
]
}
|
5082
|
display a list of available rulesets and formats
|
phpmd
|
[
"phpmd_2"
] |
phpmd
|
phpmd
| true |
{
"token": [
"|main|"
],
"oracle_man": [
[
"phpmd_2",
"phpmd_3",
"phpmd_4"
]
]
}
|
5083
|
scan a file or directory for problems using commaseparated rulesets
|
phpmd {{path/to/file_or_directory}} {{xml|text|html}} {{rulesets}}
|
[
"phpmd_2"
] |
phpmd
|
phpmd
| true |
{
"token": [
"|main|"
],
"oracle_man": [
[
"phpmd_2",
"phpmd_3",
"phpmd_4"
]
]
}
|
5084
|
specify the minimum priority threshold for rules
|
phpmd {{path/to/file_or_directory}} {{xml|text|html}} {{rulesets}} --minimumpriority {{priority}}
|
[
"phpmd_2",
"phpmd_4"
] |
phpmd
|
phpmd
| true |
{
"token": [
"--minimumpriority",
"|main|"
],
"oracle_man": [
[
"phpmd_4"
],
[
"phpmd_2",
"phpmd_3",
"phpmd_4"
]
]
}
|
5085
|
include only the specified extensions in analysis
|
phpmd {{path/to/file_or_directory}} {{xml|text|html}} {{rulesets}} --suffixes {{extensions}}
|
[
"phpmd_2",
"phpmd_4"
] |
phpmd
|
phpmd
| true |
{
"token": [
"--suffixes",
"|main|"
],
"oracle_man": [
[
"phpmd_4"
],
[
"phpmd_2",
"phpmd_3",
"phpmd_4"
]
]
}
|
5086
|
exclude the specified commaseparated directories
|
phpmd {{path/to/file_or_directory}} {{xml|text|html}} {{rulesets}} --exclude {{directory_patterns}}
|
[
"phpmd_2",
"phpmd_4"
] |
phpmd
|
phpmd
| true |
{
"token": [
"--exclude",
"|main|"
],
"oracle_man": [
[
"phpmd_4"
],
[
"phpmd_2",
"phpmd_3",
"phpmd_4"
]
]
}
|
5087
|
output the results to a file instead of stdout
|
phpmd {{path/to/file_or_directory}} {{xml|text|html}} {{rulesets}} --reportfile {{path/to/report_file}}
|
[
"phpmd_2",
"phpmd_4"
] |
phpmd
|
phpmd
| true |
{
"token": [
"--reportfile",
"|main|"
],
"oracle_man": [
[
"phpmd_4"
],
[
"phpmd_2",
"phpmd_3",
"phpmd_4"
]
]
}
|
5088
|
ignore the use of warningsuppressive phpdoc comments
|
phpmd {{path/to/file_or_directory}} {{xml|text|html}} {{rulesets}} --strict
|
[
"phpmd_2",
"phpmd_4"
] |
phpmd
|
phpmd
| true |
{
"token": [
"--strict",
"|main|"
],
"oracle_man": [
[
"phpmd_4"
],
[
"phpmd_2",
"phpmd_3",
"phpmd_4"
]
]
}
|
5096
|
run maintenance on each of a list of repositories stored in the `maintenance.repo` user configuration variable
|
git for-each-repo --config={{maintenance.repo}} {{maintenance run}}
|
[
"git-for-each-repo_2",
"git-for-each-repo_3",
"git-for-each-repo_6",
"git-for-each-repo_8",
"git-for-each-repo_10",
"git-for-each-repo_11"
] |
git-for-each-repo
|
git-for-each-repo
| true |
{
"token": [
"git",
"for-each-repo",
"--config",
"|main|"
],
"oracle_man": [
[
"git-for-each-repo_2",
"git-for-each-repo_6",
"git-for-each-repo_10",
"git-for-each-repo_11"
],
[
"git-for-each-repo_2",
"git-for-each-repo_6"
],
[
"git-for-each-repo_2",
"git-for-each-repo_6",
"git-for-each-repo_8"
],
[
"git-for-each-repo_3",
"git-for-each-repo_4",
"git-for-each-repo_5",
"git-for-each-repo_6",
"git-for-each-repo_7"
]
]
}
|
5097
|
run `git pull` on each repository listed in a global configuration variable
|
git for-each-repo --config={{global_configuration_variable}} {{pull}}
|
[
"git-for-each-repo_2",
"git-for-each-repo_3",
"git-for-each-repo_6",
"git-for-each-repo_8",
"git-for-each-repo_10",
"git-for-each-repo_11"
] |
git-for-each-repo
|
git-for-each-repo
| true |
{
"token": [
"git",
"for-each-repo",
"--config",
"|main|"
],
"oracle_man": [
[
"git-for-each-repo_2",
"git-for-each-repo_6",
"git-for-each-repo_10",
"git-for-each-repo_11"
],
[
"git-for-each-repo_2",
"git-for-each-repo_6"
],
[
"git-for-each-repo_2",
"git-for-each-repo_6",
"git-for-each-repo_8"
],
[
"git-for-each-repo_3",
"git-for-each-repo_4",
"git-for-each-repo_5",
"git-for-each-repo_6",
"git-for-each-repo_7"
]
]
}
|
5117
|
mount an encrypted filesystem. the initialization wizard will be started on the first execution
|
cryfs {{path/to/cipher_dir}} {{path/to/mount_point}}
|
[
"cryfs_3"
] |
cryfs
|
cryfs
| true |
{
"token": [
"|main|"
],
"oracle_man": [
[
"cryfs_3",
"cryfs_4",
"cryfs_5"
]
]
}
|
5118
|
unmount an encrypted filesystem
|
cryfs-unmount {{path/to/mount_point}}
|
[
"cryfs_3"
] |
cryfs
|
cryfs
| true |
{
"token": [
"cryfs-unmount",
"|main|"
],
"oracle_man": [
[],
[
"cryfs_3",
"cryfs_4",
"cryfs_5"
]
]
}
|
5119
|
automatically unmount after ten minutes of inactivity
|
cryfs --unmount-idle {{10}} {{path/to/cipher_dir}} {{path/to/mount_point}}
|
[
"cryfs_3",
"cryfs_29"
] |
cryfs
|
cryfs
| true |
{
"token": [
"--unmount-idle",
"|main|"
],
"oracle_man": [
[
"cryfs_29"
],
[
"cryfs_3",
"cryfs_4",
"cryfs_5"
]
]
}
|
5120
|
show a list of supported ciphers
|
cryfs --show-ciphers
|
[
"cryfs_2",
"cryfs_3",
"cryfs_15"
] |
cryfs
|
cryfs
| true |
{
"token": [
"--show-ciphers",
"|main|"
],
"oracle_man": [
[
"cryfs_2",
"cryfs_15"
],
[
"cryfs_3",
"cryfs_4",
"cryfs_5"
]
]
}
|
5129
|
connect to a server
|
openconnect {{vpn.example.org}}
|
[
"openconnect_3"
] |
openconnect
|
openconnect
| true |
{
"token": [
"|main|"
],
"oracle_man": [
[
"openconnect_3",
"openconnect_4",
"openconnect_5",
"openconnect_6"
]
]
}
|
5130
|
connect to a server, forking into the background
|
openconnect --background {{vpn.example.org}}
|
[
"openconnect_2",
"openconnect_3",
"openconnect_9"
] |
openconnect
|
openconnect
| true |
{
"token": [
"--background",
"|main|"
],
"oracle_man": [
[
"openconnect_2",
"openconnect_9"
],
[
"openconnect_3",
"openconnect_4",
"openconnect_5",
"openconnect_6"
]
]
}
|
5131
|
terminate the connection that is running in the background
|
killall -SIGINT openconnect
|
[
"openconnect_3"
] |
openconnect
|
openconnect
| true |
{
"token": [
"killall",
"-SIGINT",
"|main|"
],
"oracle_man": [
[],
[],
[
"openconnect_3",
"openconnect_4",
"openconnect_5",
"openconnect_6"
]
]
}
|
5132
|
connect to a server, reading options from a config file
|
openconnect --config={{path/to/file}} {{vpn.example.org}}
|
[
"openconnect_2",
"openconnect_3",
"openconnect_7"
] |
openconnect
|
openconnect
| true |
{
"token": [
"--config",
"|main|"
],
"oracle_man": [
[
"openconnect_2",
"openconnect_7"
],
[
"openconnect_3",
"openconnect_4",
"openconnect_5",
"openconnect_6"
]
]
}
|
5133
|
connect to a server and authenticate with a specific ssl client certificate
|
openconnect --certificate={{path/to/file}} {{vpn.example.org}}
|
[
"openconnect_2",
"openconnect_3",
"openconnect_11"
] |
openconnect
|
openconnect
| true |
{
"token": [
"--certificate",
"|main|"
],
"oracle_man": [
[
"openconnect_2",
"openconnect_11"
],
[
"openconnect_3",
"openconnect_4",
"openconnect_5",
"openconnect_6"
]
]
}
|
5138
|
compile a dvi document
|
latex {{source.tex}}
|
[
"latex_3"
] |
latex
|
latex
| true |
{
"token": [
"|main|"
],
"oracle_man": [
[
"latex_3",
"latex_4",
"latex_5",
"latex_6",
"latex_7",
"latex_8"
]
]
}
|
5139
|
compile a dvi document, specifying an output directory
|
latex -output-directory={{path/to/directory}} {{source.tex}}
|
[
"latex_3"
] |
latex
|
latex
| true |
{
"token": [
"-output-directory",
"|main|"
],
"oracle_man": [
[],
[
"latex_3",
"latex_4",
"latex_5",
"latex_6",
"latex_7",
"latex_8"
]
]
}
|
5140
|
compile a dvi document, exiting on each error
|
latex -halt-on-error {{source.tex}}
|
[
"latex_3"
] |
latex
|
latex
| true |
{
"token": [
"-halt-on-error",
"|main|"
],
"oracle_man": [
[],
[
"latex_3",
"latex_4",
"latex_5",
"latex_6",
"latex_7",
"latex_8"
]
]
}
|
5144
|
display the status of changed files
|
hg status
|
[
"hg_3",
"hg_1104",
"hg_1105",
"hg_1106",
"hg_1108",
"hg_1120",
"hg_1123",
"hg_1125",
"hg_1127",
"hg_1129",
"hg_1131",
"hg_1513",
"hg_1570",
"hg_1626",
"hg_1731",
"hg_1733",
"hg_1745",
"hg_1746",
"hg_2465",
"hg_3277"
] |
hg
|
hg-status
| true |
{
"token": [
"status",
"|main|"
],
"oracle_man": [
[
"hg_1104",
"hg_1105",
"hg_1106",
"hg_1108",
"hg_1120",
"hg_1123",
"hg_1125",
"hg_1127",
"hg_1129",
"hg_1131",
"hg_1513",
"hg_1570",
"hg_1626",
"hg_1731",
"hg_1733",
"hg_1745",
"hg_1746",
"hg_2465",
"hg_3277"
],
[
"hg_3"
]
]
}
|
5145
|
display only modified files
|
hg status --modified
|
[
"hg_3",
"hg_1104",
"hg_1105",
"hg_1106",
"hg_1108",
"hg_1120",
"hg_1123",
"hg_1125",
"hg_1127",
"hg_1129",
"hg_1131",
"hg_1135",
"hg_1513",
"hg_1570",
"hg_1626",
"hg_1731",
"hg_1733",
"hg_1745",
"hg_1746",
"hg_2465",
"hg_3277"
] |
hg
|
hg-status
| true |
{
"token": [
"status",
"--modified",
"|main|"
],
"oracle_man": [
[
"hg_1104",
"hg_1105",
"hg_1106",
"hg_1108",
"hg_1120",
"hg_1123",
"hg_1125",
"hg_1127",
"hg_1129",
"hg_1131",
"hg_1513",
"hg_1570",
"hg_1626",
"hg_1731",
"hg_1733",
"hg_1745",
"hg_1746",
"hg_2465",
"hg_3277"
],
[
"hg_1135"
],
[
"hg_3"
]
]
}
|
5146
|
display only added files
|
hg status --added
|
[
"hg_3",
"hg_1104",
"hg_1105",
"hg_1106",
"hg_1108",
"hg_1120",
"hg_1123",
"hg_1125",
"hg_1127",
"hg_1129",
"hg_1131",
"hg_1136",
"hg_1513",
"hg_1570",
"hg_1626",
"hg_1731",
"hg_1733",
"hg_1745",
"hg_1746",
"hg_2465",
"hg_3277"
] |
hg
|
hg-status
| true |
{
"token": [
"status",
"--added",
"|main|"
],
"oracle_man": [
[
"hg_1104",
"hg_1105",
"hg_1106",
"hg_1108",
"hg_1120",
"hg_1123",
"hg_1125",
"hg_1127",
"hg_1129",
"hg_1131",
"hg_1513",
"hg_1570",
"hg_1626",
"hg_1731",
"hg_1733",
"hg_1745",
"hg_1746",
"hg_2465",
"hg_3277"
],
[
"hg_1136"
],
[
"hg_3"
]
]
}
|
5147
|
display only removed files
|
hg status --removed
|
[
"hg_3",
"hg_779",
"hg_789",
"hg_820",
"hg_1104",
"hg_1105",
"hg_1106",
"hg_1108",
"hg_1120",
"hg_1123",
"hg_1125",
"hg_1127",
"hg_1129",
"hg_1131",
"hg_1137",
"hg_1513",
"hg_1570",
"hg_1626",
"hg_1731",
"hg_1733",
"hg_1745",
"hg_1746",
"hg_2465",
"hg_3277",
"hg_3341"
] |
hg
|
hg-status
| true |
{
"token": [
"status",
"--removed",
"|main|"
],
"oracle_man": [
[
"hg_1104",
"hg_1105",
"hg_1106",
"hg_1108",
"hg_1120",
"hg_1123",
"hg_1125",
"hg_1127",
"hg_1129",
"hg_1131",
"hg_1513",
"hg_1570",
"hg_1626",
"hg_1731",
"hg_1733",
"hg_1745",
"hg_1746",
"hg_2465",
"hg_3277"
],
[
"hg_779",
"hg_789",
"hg_820",
"hg_1137",
"hg_3341"
],
[
"hg_3"
]
]
}
|
5148
|
display only deleted (but tracked) files
|
hg status --deleted
|
[
"hg_3",
"hg_1104",
"hg_1105",
"hg_1106",
"hg_1108",
"hg_1120",
"hg_1123",
"hg_1125",
"hg_1127",
"hg_1129",
"hg_1131",
"hg_1138",
"hg_1513",
"hg_1570",
"hg_1626",
"hg_1731",
"hg_1733",
"hg_1745",
"hg_1746",
"hg_2465",
"hg_3197",
"hg_3277"
] |
hg
|
hg-status
| true |
{
"token": [
"status",
"--deleted",
"|main|"
],
"oracle_man": [
[
"hg_1104",
"hg_1105",
"hg_1106",
"hg_1108",
"hg_1120",
"hg_1123",
"hg_1125",
"hg_1127",
"hg_1129",
"hg_1131",
"hg_1513",
"hg_1570",
"hg_1626",
"hg_1731",
"hg_1733",
"hg_1745",
"hg_1746",
"hg_2465",
"hg_3277"
],
[
"hg_1138",
"hg_3197"
],
[
"hg_3"
]
]
}
|
5149
|
display changes in the working directory compared to a specified changeset
|
hg status --rev {{revision}}
|
[
"hg_3",
"hg_35",
"hg_68",
"hg_116",
"hg_154",
"hg_202",
"hg_216",
"hg_227",
"hg_330",
"hg_383",
"hg_410",
"hg_439",
"hg_457",
"hg_472",
"hg_488",
"hg_503",
"hg_535",
"hg_586",
"hg_631",
"hg_641",
"hg_656",
"hg_659",
"hg_680",
"hg_733",
"hg_759",
"hg_774",
"hg_818",
"hg_841",
"hg_847",
"hg_921",
"hg_955",
"hg_1053",
"hg_1061",
"hg_1104",
"hg_1105",
"hg_1106",
"hg_1108",
"hg_1120",
"hg_1123",
"hg_1125",
"hg_1127",
"hg_1129",
"hg_1131",
"hg_1146",
"hg_1200",
"hg_1205",
"hg_1233",
"hg_1249",
"hg_1304",
"hg_1372",
"hg_1513",
"hg_1570",
"hg_1626",
"hg_1731",
"hg_1733",
"hg_1745",
"hg_1746",
"hg_2465",
"hg_2807",
"hg_2906",
"hg_2912",
"hg_2917",
"hg_2935",
"hg_3008",
"hg_3119",
"hg_3173",
"hg_3213",
"hg_3227",
"hg_3272",
"hg_3277",
"hg_3340",
"hg_3448",
"hg_3591",
"hg_3740",
"hg_3886",
"hg_3903",
"hg_3912",
"hg_4041",
"hg_4104",
"hg_4106",
"hg_4128",
"hg_4141",
"hg_4144",
"hg_4145",
"hg_4178",
"hg_4264",
"hg_4272",
"hg_4346",
"hg_4445",
"hg_4448"
] |
hg
|
hg-status
| true |
{
"token": [
"status",
"--rev",
"|main|"
],
"oracle_man": [
[
"hg_1104",
"hg_1105",
"hg_1106",
"hg_1108",
"hg_1120",
"hg_1123",
"hg_1125",
"hg_1127",
"hg_1129",
"hg_1131",
"hg_1513",
"hg_1570",
"hg_1626",
"hg_1731",
"hg_1733",
"hg_1745",
"hg_1746",
"hg_2465",
"hg_3277"
],
[
"hg_35",
"hg_68",
"hg_116",
"hg_154",
"hg_202",
"hg_216",
"hg_227",
"hg_330",
"hg_383",
"hg_410",
"hg_439",
"hg_457",
"hg_472",
"hg_488",
"hg_503",
"hg_535",
"hg_586",
"hg_631",
"hg_641",
"hg_656",
"hg_659",
"hg_680",
"hg_733",
"hg_759",
"hg_774",
"hg_818",
"hg_841",
"hg_847",
"hg_921",
"hg_955",
"hg_1053",
"hg_1061",
"hg_1123",
"hg_1146",
"hg_1200",
"hg_1205",
"hg_1233",
"hg_1249",
"hg_1304",
"hg_1372",
"hg_2807",
"hg_2906",
"hg_2912",
"hg_2917",
"hg_2935",
"hg_3008",
"hg_3119",
"hg_3173",
"hg_3213",
"hg_3227",
"hg_3272",
"hg_3340",
"hg_3448",
"hg_3591",
"hg_3740",
"hg_3886",
"hg_3903",
"hg_3912",
"hg_4041",
"hg_4104",
"hg_4106",
"hg_4128",
"hg_4141",
"hg_4144",
"hg_4145",
"hg_4178",
"hg_4264",
"hg_4272",
"hg_4346",
"hg_4445",
"hg_4448"
],
[
"hg_3"
]
]
}
|
5150
|
display only files matching a specified glob pattern
|
hg status --include {{pattern}}
|
[
"hg_3",
"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_1104",
"hg_1105",
"hg_1106",
"hg_1108",
"hg_1120",
"hg_1123",
"hg_1125",
"hg_1127",
"hg_1129",
"hg_1131",
"hg_1148",
"hg_1236",
"hg_1513",
"hg_1570",
"hg_1626",
"hg_1731",
"hg_1733",
"hg_1745",
"hg_1746",
"hg_1773",
"hg_2465",
"hg_2700",
"hg_2776",
"hg_2944",
"hg_3180",
"hg_3277",
"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
|
hg-status
| true |
{
"token": [
"status",
"--include",
"|main|"
],
"oracle_man": [
[
"hg_1104",
"hg_1105",
"hg_1106",
"hg_1108",
"hg_1120",
"hg_1123",
"hg_1125",
"hg_1127",
"hg_1129",
"hg_1131",
"hg_1513",
"hg_1570",
"hg_1626",
"hg_1731",
"hg_1733",
"hg_1745",
"hg_1746",
"hg_2465",
"hg_3277"
],
[
"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"
]
]
}
|
5151
|
display files, excluding those that match a specified glob pattern
|
hg status --exclude {{pattern}}
|
[
"hg_3",
"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_1104",
"hg_1105",
"hg_1106",
"hg_1108",
"hg_1120",
"hg_1123",
"hg_1125",
"hg_1127",
"hg_1129",
"hg_1131",
"hg_1149",
"hg_1237",
"hg_1513",
"hg_1570",
"hg_1626",
"hg_1731",
"hg_1733",
"hg_1745",
"hg_1746",
"hg_2465",
"hg_2701",
"hg_2777",
"hg_2945",
"hg_3181",
"hg_3277",
"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
|
hg-status
| true |
{
"token": [
"status",
"--exclude",
"|main|"
],
"oracle_man": [
[
"hg_1104",
"hg_1105",
"hg_1106",
"hg_1108",
"hg_1120",
"hg_1123",
"hg_1125",
"hg_1127",
"hg_1129",
"hg_1131",
"hg_1513",
"hg_1570",
"hg_1626",
"hg_1731",
"hg_1733",
"hg_1745",
"hg_1746",
"hg_2465",
"hg_3277"
],
[
"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"
]
]
}
|
5152
|
make a virtual mosaic from all tiff files contained in a directory
|
gdalbuildvrt {{path/to/output.vrt}} {{path/to/input_directory/*.tif}}
|
[
"gdalbuildvrt_3"
] |
gdalbuildvrt
|
gdalbuildvrt
| true |
{
"token": [
"|main|"
],
"oracle_man": [
[
"gdalbuildvrt_3",
"gdalbuildvrt_4",
"gdalbuildvrt_5",
"gdalbuildvrt_6",
"gdalbuildvrt_7",
"gdalbuildvrt_8",
"gdalbuildvrt_9",
"gdalbuildvrt_10",
"gdalbuildvrt_11",
"gdalbuildvrt_12",
"gdalbuildvrt_13",
"gdalbuildvrt_14",
"gdalbuildvrt_15",
"gdalbuildvrt_16",
"gdalbuildvrt_17",
"gdalbuildvrt_18",
"gdalbuildvrt_19",
"gdalbuildvrt_20",
"gdalbuildvrt_21",
"gdalbuildvrt_22",
"gdalbuildvrt_23",
"gdalbuildvrt_24",
"gdalbuildvrt_25",
"gdalbuildvrt_26",
"gdalbuildvrt_27",
"gdalbuildvrt_28",
"gdalbuildvrt_29",
"gdalbuildvrt_30",
"gdalbuildvrt_31",
"gdalbuildvrt_32",
"gdalbuildvrt_33"
]
]
}
|
5153
|
make a virtual mosaic from files whose name is specified in a text file
|
gdalbuildvrt -input_file_list {{path/to/list.txt}} {{path/to/output.vrt}}
|
[
"gdalbuildvrt_2",
"gdalbuildvrt_3",
"gdalbuildvrt_31",
"gdalbuildvrt_37"
] |
gdalbuildvrt
|
gdalbuildvrt
| true |
{
"token": [
"-input_file_list",
"|main|"
],
"oracle_man": [
[
"gdalbuildvrt_2",
"gdalbuildvrt_31",
"gdalbuildvrt_37"
],
[
"gdalbuildvrt_3",
"gdalbuildvrt_4",
"gdalbuildvrt_5",
"gdalbuildvrt_6",
"gdalbuildvrt_7",
"gdalbuildvrt_8",
"gdalbuildvrt_9",
"gdalbuildvrt_10",
"gdalbuildvrt_11",
"gdalbuildvrt_12",
"gdalbuildvrt_13",
"gdalbuildvrt_14",
"gdalbuildvrt_15",
"gdalbuildvrt_16",
"gdalbuildvrt_17",
"gdalbuildvrt_18",
"gdalbuildvrt_19",
"gdalbuildvrt_20",
"gdalbuildvrt_21",
"gdalbuildvrt_22",
"gdalbuildvrt_23",
"gdalbuildvrt_24",
"gdalbuildvrt_25",
"gdalbuildvrt_26",
"gdalbuildvrt_27",
"gdalbuildvrt_28",
"gdalbuildvrt_29",
"gdalbuildvrt_30",
"gdalbuildvrt_31",
"gdalbuildvrt_32",
"gdalbuildvrt_33"
]
]
}
|
5154
|
make an rgb virtual mosaic from 3 singleband input files
|
gdalbuildvrt -separate {{path/to/rgb.vrt}} {{path/to/red.tif}} {{path/to/green.tif}} {{path/to/blue.tif}}
|
[
"gdalbuildvrt_2",
"gdalbuildvrt_3",
"gdalbuildvrt_4",
"gdalbuildvrt_6",
"gdalbuildvrt_17",
"gdalbuildvrt_25",
"gdalbuildvrt_39"
] |
gdalbuildvrt
|
gdalbuildvrt
| true |
{
"token": [
"-separate",
"|main|"
],
"oracle_man": [
[
"gdalbuildvrt_2",
"gdalbuildvrt_4",
"gdalbuildvrt_6",
"gdalbuildvrt_17",
"gdalbuildvrt_25",
"gdalbuildvrt_39"
],
[
"gdalbuildvrt_3",
"gdalbuildvrt_4",
"gdalbuildvrt_5",
"gdalbuildvrt_6",
"gdalbuildvrt_7",
"gdalbuildvrt_8",
"gdalbuildvrt_9",
"gdalbuildvrt_10",
"gdalbuildvrt_11",
"gdalbuildvrt_12",
"gdalbuildvrt_13",
"gdalbuildvrt_14",
"gdalbuildvrt_15",
"gdalbuildvrt_16",
"gdalbuildvrt_17",
"gdalbuildvrt_18",
"gdalbuildvrt_19",
"gdalbuildvrt_20",
"gdalbuildvrt_21",
"gdalbuildvrt_22",
"gdalbuildvrt_23",
"gdalbuildvrt_24",
"gdalbuildvrt_25",
"gdalbuildvrt_26",
"gdalbuildvrt_27",
"gdalbuildvrt_28",
"gdalbuildvrt_29",
"gdalbuildvrt_30",
"gdalbuildvrt_31",
"gdalbuildvrt_32",
"gdalbuildvrt_33"
]
]
}
|
5155
|
make a virtual mosaic with blue background colour (rgb 0 0 255)
|
gdalbuildvrt -hidenodata -vrtnodata "{{0 0 255}}" {{path/to/output.vrt}} {{path/to/input_directory/*.tif}}
|
[
"gdalbuildvrt_2",
"gdalbuildvrt_3",
"gdalbuildvrt_18",
"gdalbuildvrt_24",
"gdalbuildvrt_41"
] |
gdalbuildvrt
|
gdalbuildvrt
| true |
{
"token": [
"-hidenodata",
"-vrtnodata",
"|main|"
],
"oracle_man": [
[
"gdalbuildvrt_2",
"gdalbuildvrt_18",
"gdalbuildvrt_41"
],
[
"gdalbuildvrt_2",
"gdalbuildvrt_24",
"gdalbuildvrt_41"
],
[
"gdalbuildvrt_3",
"gdalbuildvrt_4",
"gdalbuildvrt_5",
"gdalbuildvrt_6",
"gdalbuildvrt_7",
"gdalbuildvrt_8",
"gdalbuildvrt_9",
"gdalbuildvrt_10",
"gdalbuildvrt_11",
"gdalbuildvrt_12",
"gdalbuildvrt_13",
"gdalbuildvrt_14",
"gdalbuildvrt_15",
"gdalbuildvrt_16",
"gdalbuildvrt_17",
"gdalbuildvrt_18",
"gdalbuildvrt_19",
"gdalbuildvrt_20",
"gdalbuildvrt_21",
"gdalbuildvrt_22",
"gdalbuildvrt_23",
"gdalbuildvrt_24",
"gdalbuildvrt_25",
"gdalbuildvrt_26",
"gdalbuildvrt_27",
"gdalbuildvrt_28",
"gdalbuildvrt_29",
"gdalbuildvrt_30",
"gdalbuildvrt_31",
"gdalbuildvrt_32",
"gdalbuildvrt_33"
]
]
}
|
5156
|
start git cola
|
git cola
|
[
"git-cola_2",
"git-cola_3",
"git-cola_4",
"git-cola_19",
"git-cola_31",
"git-cola_33",
"git-cola_35",
"git-cola_106",
"git-cola_107",
"git-cola_109",
"git-cola_110",
"git-cola_111",
"git-cola_112",
"git-cola_113",
"git-cola_114",
"git-cola_115",
"git-cola_116",
"git-cola_117",
"git-cola_122",
"git-cola_123",
"git-cola_124",
"git-cola_125",
"git-cola_126",
"git-cola_127",
"git-cola_128",
"git-cola_129",
"git-cola_130",
"git-cola_131",
"git-cola_132",
"git-cola_133",
"git-cola_134",
"git-cola_136",
"git-cola_137",
"git-cola_138",
"git-cola_139",
"git-cola_140",
"git-cola_141",
"git-cola_142",
"git-cola_143",
"git-cola_144",
"git-cola_145",
"git-cola_147",
"git-cola_158",
"git-cola_162",
"git-cola_166",
"git-cola_167",
"git-cola_169",
"git-cola_190"
] |
git-cola
|
git-cola
| true |
{
"token": [
"git",
"cola",
"|main|"
],
"oracle_man": [
[
"git-cola_2",
"git-cola_3",
"git-cola_4",
"git-cola_19",
"git-cola_31",
"git-cola_33",
"git-cola_35",
"git-cola_106",
"git-cola_107",
"git-cola_112",
"git-cola_125",
"git-cola_126",
"git-cola_127",
"git-cola_129",
"git-cola_130",
"git-cola_131",
"git-cola_139",
"git-cola_141",
"git-cola_143",
"git-cola_145",
"git-cola_147",
"git-cola_158",
"git-cola_162",
"git-cola_166",
"git-cola_167",
"git-cola_169",
"git-cola_190"
],
[
"git-cola_2",
"git-cola_3",
"git-cola_31",
"git-cola_33",
"git-cola_35",
"git-cola_106",
"git-cola_107",
"git-cola_109",
"git-cola_110",
"git-cola_111",
"git-cola_112",
"git-cola_113",
"git-cola_114",
"git-cola_115",
"git-cola_116",
"git-cola_117",
"git-cola_122",
"git-cola_123",
"git-cola_124",
"git-cola_125",
"git-cola_126",
"git-cola_127",
"git-cola_128",
"git-cola_129",
"git-cola_130",
"git-cola_131",
"git-cola_132",
"git-cola_133",
"git-cola_134",
"git-cola_136",
"git-cola_137",
"git-cola_138",
"git-cola_139",
"git-cola_140",
"git-cola_141",
"git-cola_142",
"git-cola_143",
"git-cola_144",
"git-cola_145",
"git-cola_158",
"git-cola_162",
"git-cola_169"
],
[
"git-cola_3"
]
]
}
|
5157
|
start git cola in amend mode
|
git cola --amend
|
[
"git-cola_2",
"git-cola_3",
"git-cola_4",
"git-cola_19",
"git-cola_31",
"git-cola_33",
"git-cola_35",
"git-cola_106",
"git-cola_107",
"git-cola_109",
"git-cola_110",
"git-cola_111",
"git-cola_112",
"git-cola_113",
"git-cola_114",
"git-cola_115",
"git-cola_116",
"git-cola_117",
"git-cola_122",
"git-cola_123",
"git-cola_124",
"git-cola_125",
"git-cola_126",
"git-cola_127",
"git-cola_128",
"git-cola_129",
"git-cola_130",
"git-cola_131",
"git-cola_132",
"git-cola_133",
"git-cola_134",
"git-cola_136",
"git-cola_137",
"git-cola_138",
"git-cola_139",
"git-cola_140",
"git-cola_141",
"git-cola_142",
"git-cola_143",
"git-cola_144",
"git-cola_145",
"git-cola_147",
"git-cola_158",
"git-cola_162",
"git-cola_166",
"git-cola_167",
"git-cola_169",
"git-cola_190"
] |
git-cola
|
git-cola
| true |
{
"token": [
"git",
"cola",
"--amend",
"|main|"
],
"oracle_man": [
[
"git-cola_2",
"git-cola_3",
"git-cola_4",
"git-cola_19",
"git-cola_31",
"git-cola_33",
"git-cola_35",
"git-cola_106",
"git-cola_107",
"git-cola_112",
"git-cola_125",
"git-cola_126",
"git-cola_127",
"git-cola_129",
"git-cola_130",
"git-cola_131",
"git-cola_139",
"git-cola_141",
"git-cola_143",
"git-cola_145",
"git-cola_147",
"git-cola_158",
"git-cola_162",
"git-cola_166",
"git-cola_167",
"git-cola_169",
"git-cola_190"
],
[
"git-cola_2",
"git-cola_3",
"git-cola_31",
"git-cola_33",
"git-cola_35",
"git-cola_106",
"git-cola_107",
"git-cola_109",
"git-cola_110",
"git-cola_111",
"git-cola_112",
"git-cola_113",
"git-cola_114",
"git-cola_115",
"git-cola_116",
"git-cola_117",
"git-cola_122",
"git-cola_123",
"git-cola_124",
"git-cola_125",
"git-cola_126",
"git-cola_127",
"git-cola_128",
"git-cola_129",
"git-cola_130",
"git-cola_131",
"git-cola_132",
"git-cola_133",
"git-cola_134",
"git-cola_136",
"git-cola_137",
"git-cola_138",
"git-cola_139",
"git-cola_140",
"git-cola_141",
"git-cola_142",
"git-cola_143",
"git-cola_144",
"git-cola_145",
"git-cola_158",
"git-cola_162",
"git-cola_169"
],
[],
[
"git-cola_3"
]
]
}
|
5158
|
prompt for a git repository. defaults to the current directory
|
git cola --prompt
|
[
"git-cola_2",
"git-cola_3",
"git-cola_4",
"git-cola_19",
"git-cola_31",
"git-cola_33",
"git-cola_35",
"git-cola_106",
"git-cola_107",
"git-cola_109",
"git-cola_110",
"git-cola_111",
"git-cola_112",
"git-cola_113",
"git-cola_114",
"git-cola_115",
"git-cola_116",
"git-cola_117",
"git-cola_122",
"git-cola_123",
"git-cola_124",
"git-cola_125",
"git-cola_126",
"git-cola_127",
"git-cola_128",
"git-cola_129",
"git-cola_130",
"git-cola_131",
"git-cola_132",
"git-cola_133",
"git-cola_134",
"git-cola_136",
"git-cola_137",
"git-cola_138",
"git-cola_139",
"git-cola_140",
"git-cola_141",
"git-cola_142",
"git-cola_143",
"git-cola_144",
"git-cola_145",
"git-cola_147",
"git-cola_158",
"git-cola_162",
"git-cola_166",
"git-cola_167",
"git-cola_169",
"git-cola_190"
] |
git-cola
|
git-cola
| true |
{
"token": [
"git",
"cola",
"--prompt",
"|main|"
],
"oracle_man": [
[
"git-cola_2",
"git-cola_3",
"git-cola_4",
"git-cola_19",
"git-cola_31",
"git-cola_33",
"git-cola_35",
"git-cola_106",
"git-cola_107",
"git-cola_112",
"git-cola_125",
"git-cola_126",
"git-cola_127",
"git-cola_129",
"git-cola_130",
"git-cola_131",
"git-cola_139",
"git-cola_141",
"git-cola_143",
"git-cola_145",
"git-cola_147",
"git-cola_158",
"git-cola_162",
"git-cola_166",
"git-cola_167",
"git-cola_169",
"git-cola_190"
],
[
"git-cola_2",
"git-cola_3",
"git-cola_31",
"git-cola_33",
"git-cola_35",
"git-cola_106",
"git-cola_107",
"git-cola_109",
"git-cola_110",
"git-cola_111",
"git-cola_112",
"git-cola_113",
"git-cola_114",
"git-cola_115",
"git-cola_116",
"git-cola_117",
"git-cola_122",
"git-cola_123",
"git-cola_124",
"git-cola_125",
"git-cola_126",
"git-cola_127",
"git-cola_128",
"git-cola_129",
"git-cola_130",
"git-cola_131",
"git-cola_132",
"git-cola_133",
"git-cola_134",
"git-cola_136",
"git-cola_137",
"git-cola_138",
"git-cola_139",
"git-cola_140",
"git-cola_141",
"git-cola_142",
"git-cola_143",
"git-cola_144",
"git-cola_145",
"git-cola_158",
"git-cola_162",
"git-cola_169"
],
[],
[
"git-cola_3"
]
]
}
|
5159
|
open the git repository at mentioned path
|
git cola --repo {{path/to/git-repository}}
|
[
"git-cola_2",
"git-cola_3",
"git-cola_4",
"git-cola_19",
"git-cola_31",
"git-cola_33",
"git-cola_35",
"git-cola_106",
"git-cola_107",
"git-cola_109",
"git-cola_110",
"git-cola_111",
"git-cola_112",
"git-cola_113",
"git-cola_114",
"git-cola_115",
"git-cola_116",
"git-cola_117",
"git-cola_122",
"git-cola_123",
"git-cola_124",
"git-cola_125",
"git-cola_126",
"git-cola_127",
"git-cola_128",
"git-cola_129",
"git-cola_130",
"git-cola_131",
"git-cola_132",
"git-cola_133",
"git-cola_134",
"git-cola_136",
"git-cola_137",
"git-cola_138",
"git-cola_139",
"git-cola_140",
"git-cola_141",
"git-cola_142",
"git-cola_143",
"git-cola_144",
"git-cola_145",
"git-cola_147",
"git-cola_158",
"git-cola_162",
"git-cola_166",
"git-cola_167",
"git-cola_169",
"git-cola_190"
] |
git-cola
|
git-cola
| true |
{
"token": [
"git",
"cola",
"--repo",
"|main|"
],
"oracle_man": [
[
"git-cola_2",
"git-cola_3",
"git-cola_4",
"git-cola_19",
"git-cola_31",
"git-cola_33",
"git-cola_35",
"git-cola_106",
"git-cola_107",
"git-cola_112",
"git-cola_125",
"git-cola_126",
"git-cola_127",
"git-cola_129",
"git-cola_130",
"git-cola_131",
"git-cola_139",
"git-cola_141",
"git-cola_143",
"git-cola_145",
"git-cola_147",
"git-cola_158",
"git-cola_162",
"git-cola_166",
"git-cola_167",
"git-cola_169",
"git-cola_190"
],
[
"git-cola_2",
"git-cola_3",
"git-cola_31",
"git-cola_33",
"git-cola_35",
"git-cola_106",
"git-cola_107",
"git-cola_109",
"git-cola_110",
"git-cola_111",
"git-cola_112",
"git-cola_113",
"git-cola_114",
"git-cola_115",
"git-cola_116",
"git-cola_117",
"git-cola_122",
"git-cola_123",
"git-cola_124",
"git-cola_125",
"git-cola_126",
"git-cola_127",
"git-cola_128",
"git-cola_129",
"git-cola_130",
"git-cola_131",
"git-cola_132",
"git-cola_133",
"git-cola_134",
"git-cola_136",
"git-cola_137",
"git-cola_138",
"git-cola_139",
"git-cola_140",
"git-cola_141",
"git-cola_142",
"git-cola_143",
"git-cola_144",
"git-cola_145",
"git-cola_158",
"git-cola_162",
"git-cola_169"
],
[],
[
"git-cola_3"
]
]
}
|
5160
|
apply the path filter to the status widget
|
git cola --status-filter {{filter}}
|
[
"git-cola_2",
"git-cola_3",
"git-cola_4",
"git-cola_19",
"git-cola_31",
"git-cola_33",
"git-cola_35",
"git-cola_106",
"git-cola_107",
"git-cola_109",
"git-cola_110",
"git-cola_111",
"git-cola_112",
"git-cola_113",
"git-cola_114",
"git-cola_115",
"git-cola_116",
"git-cola_117",
"git-cola_122",
"git-cola_123",
"git-cola_124",
"git-cola_125",
"git-cola_126",
"git-cola_127",
"git-cola_128",
"git-cola_129",
"git-cola_130",
"git-cola_131",
"git-cola_132",
"git-cola_133",
"git-cola_134",
"git-cola_136",
"git-cola_137",
"git-cola_138",
"git-cola_139",
"git-cola_140",
"git-cola_141",
"git-cola_142",
"git-cola_143",
"git-cola_144",
"git-cola_145",
"git-cola_147",
"git-cola_158",
"git-cola_162",
"git-cola_166",
"git-cola_167",
"git-cola_169",
"git-cola_190"
] |
git-cola
|
git-cola
| true |
{
"token": [
"git",
"cola",
"--status-filter",
"|main|"
],
"oracle_man": [
[
"git-cola_2",
"git-cola_3",
"git-cola_4",
"git-cola_19",
"git-cola_31",
"git-cola_33",
"git-cola_35",
"git-cola_106",
"git-cola_107",
"git-cola_112",
"git-cola_125",
"git-cola_126",
"git-cola_127",
"git-cola_129",
"git-cola_130",
"git-cola_131",
"git-cola_139",
"git-cola_141",
"git-cola_143",
"git-cola_145",
"git-cola_147",
"git-cola_158",
"git-cola_162",
"git-cola_166",
"git-cola_167",
"git-cola_169",
"git-cola_190"
],
[
"git-cola_2",
"git-cola_3",
"git-cola_31",
"git-cola_33",
"git-cola_35",
"git-cola_106",
"git-cola_107",
"git-cola_109",
"git-cola_110",
"git-cola_111",
"git-cola_112",
"git-cola_113",
"git-cola_114",
"git-cola_115",
"git-cola_116",
"git-cola_117",
"git-cola_122",
"git-cola_123",
"git-cola_124",
"git-cola_125",
"git-cola_126",
"git-cola_127",
"git-cola_128",
"git-cola_129",
"git-cola_130",
"git-cola_131",
"git-cola_132",
"git-cola_133",
"git-cola_134",
"git-cola_136",
"git-cola_137",
"git-cola_138",
"git-cola_139",
"git-cola_140",
"git-cola_141",
"git-cola_142",
"git-cola_143",
"git-cola_144",
"git-cola_145",
"git-cola_158",
"git-cola_162",
"git-cola_169"
],
[],
[
"git-cola_3"
]
]
}
|
5161
|
lint a single css file
|
csslint {{file.css}}
|
[
"csslint_1"
] |
csslint
|
csslint
| true |
{
"token": [
"|main|"
],
"oracle_man": [
[
"csslint_1"
]
]
}
|
5162
|
lint multiple css files
|
csslint {{file1.css}} {{file2.css}} {{file3.css}}
|
[
"csslint_1"
] |
csslint
|
csslint
| true |
{
"token": [
"|main|"
],
"oracle_man": [
[
"csslint_1"
]
]
}
|
5163
|
list all possible style rules
|
csslint --list-rules
|
[
"csslint_1"
] |
csslint
|
csslint
| true |
{
"token": [
"--list-rules",
"|main|"
],
"oracle_man": [
[],
[
"csslint_1"
]
]
}
|
5164
|
specify certain rules as errors (which result in a nonzero exit code)
|
csslint --errors={{errors,universal-selector,imports}} {{file.css}}
|
[
"csslint_1"
] |
csslint
|
csslint
| true |
{
"token": [
"--errors",
"|main|"
],
"oracle_man": [
[],
[
"csslint_1"
]
]
}
|
5165
|
specify certain rules as warnings
|
csslint --warnings={{box-sizing,selector-max,floats}} {{file.css}}
|
[
"csslint_1"
] |
csslint
|
csslint
| true |
{
"token": [
"--warnings",
"|main|"
],
"oracle_man": [
[],
[
"csslint_1"
]
]
}
|
5166
|
specify certain rules to ignore
|
csslint --ignore={{ids,rules-count,shorthand}} {{file.css}}
|
[
"csslint_1"
] |
csslint
|
csslint
| true |
{
"token": [
"--ignore",
"|main|"
],
"oracle_man": [
[],
[
"csslint_1"
]
]
}
|
5167
|
start a repl (interactive shell)
|
python
|
[
"python_3"
] |
python
|
python
| true |
{
"token": [
"|main|"
],
"oracle_man": [
[
"python_3",
"python_4",
"python_5"
]
]
}
|
5168
|
execute script in a given python file
|
python {{script.py}}
|
[
"python_3"
] |
python
|
python
| true |
{
"token": [
"|main|"
],
"oracle_man": [
[
"python_3",
"python_4",
"python_5"
]
]
}
|
5169
|
execute script as part of an interactive shell
|
python -i {{script.py}}
|
[
"python_2",
"python_3",
"python_13",
"python_18",
"python_22",
"python_36",
"python_50"
] |
python
|
python
| true |
{
"token": [
"-i",
"|main|"
],
"oracle_man": [
[
"python_2",
"python_3",
"python_13",
"python_18",
"python_22",
"python_36",
"python_50"
],
[
"python_3",
"python_4",
"python_5"
]
]
}
|
5170
|
execute a python expression
|
python -c "{{expression}}"
|
[
"python_2",
"python_3",
"python_8",
"python_9",
"python_13",
"python_31",
"python_36",
"python_37"
] |
python
|
python
| true |
{
"token": [
"-c",
"|main|"
],
"oracle_man": [
[
"python_2",
"python_8",
"python_9",
"python_13",
"python_31",
"python_36",
"python_37"
],
[
"python_3",
"python_4",
"python_5"
]
]
}
|
5171
|
run library module as a script (terminates option list)
|
python -m {{module}} {{arguments}}
|
[
"python_2",
"python_3",
"python_15",
"python_72"
] |
python
|
python
| true |
{
"token": [
"-m",
"|main|"
],
"oracle_man": [
[
"python_2",
"python_15",
"python_72"
],
[
"python_3",
"python_4",
"python_5"
]
]
}
|
5172
|
install a package using pip
|
python -m pip install {{package_name}}
|
[
"python_2",
"python_3",
"python_15",
"python_72"
] |
python
|
python
| true |
{
"token": [
"-m",
"pip",
"install",
"|main|"
],
"oracle_man": [
[
"python_2",
"python_15",
"python_72"
],
[],
[],
[
"python_3",
"python_4",
"python_5"
]
]
}
|
5173
|
interactively debug a python script
|
python -m pdb {{script.py}}
|
[
"python_2",
"python_3",
"python_15",
"python_72"
] |
python
|
python
| true |
{
"token": [
"-m",
"pdb",
"|main|"
],
"oracle_man": [
[
"python_2",
"python_15",
"python_72"
],
[],
[
"python_3",
"python_4",
"python_5"
]
]
}
|
5174
|
launch a git daemon with a whitelisted set of directories
|
git daemon --export-all {{path/to/directory1}} {{path/to/directory2}}
|
[
"git-daemon_2",
"git-daemon_3",
"git-daemon_4",
"git-daemon_12",
"git-daemon_45",
"git-daemon_46",
"git-daemon_47",
"git-daemon_48",
"git-daemon_50",
"git-daemon_51",
"git-daemon_54"
] |
git-daemon
|
git-daemon
| true |
{
"token": [
"git",
"daemon",
"--export-all",
"|main|"
],
"oracle_man": [
[
"git-daemon_2",
"git-daemon_45",
"git-daemon_46",
"git-daemon_47",
"git-daemon_48",
"git-daemon_50",
"git-daemon_51"
],
[
"git-daemon_2",
"git-daemon_45",
"git-daemon_47",
"git-daemon_50",
"git-daemon_51",
"git-daemon_54"
],
[
"git-daemon_2",
"git-daemon_4",
"git-daemon_12",
"git-daemon_46",
"git-daemon_48",
"git-daemon_51"
],
[
"git-daemon_3",
"git-daemon_4",
"git-daemon_5",
"git-daemon_6",
"git-daemon_7"
]
]
}
|
5175
|
launch a git daemon with a specific base directory and allow pulling from all subdirectories that look like git repositories
|
git daemon --base-path={{path/to/directory}} --export-all --reuseaddr
|
[
"git-daemon_2",
"git-daemon_3",
"git-daemon_4",
"git-daemon_9",
"git-daemon_10",
"git-daemon_12",
"git-daemon_27",
"git-daemon_45",
"git-daemon_46",
"git-daemon_47",
"git-daemon_48",
"git-daemon_50",
"git-daemon_51",
"git-daemon_54"
] |
git-daemon
|
git-daemon
| true |
{
"token": [
"git",
"daemon",
"--base-path",
"--export-all",
"--reuseaddr",
"|main|"
],
"oracle_man": [
[
"git-daemon_2",
"git-daemon_45",
"git-daemon_46",
"git-daemon_47",
"git-daemon_48",
"git-daemon_50",
"git-daemon_51"
],
[
"git-daemon_2",
"git-daemon_45",
"git-daemon_47",
"git-daemon_50",
"git-daemon_51",
"git-daemon_54"
],
[
"git-daemon_2",
"git-daemon_9",
"git-daemon_10"
],
[
"git-daemon_2",
"git-daemon_4",
"git-daemon_12",
"git-daemon_46",
"git-daemon_48",
"git-daemon_51"
],
[
"git-daemon_2",
"git-daemon_27"
],
[
"git-daemon_3",
"git-daemon_4",
"git-daemon_5",
"git-daemon_6",
"git-daemon_7"
]
]
}
|
5176
|
launch a git daemon for the specified directory, verbosely printing log messages and allowing git clients to write to it
|
git daemon {{path/to/directory}} --enable=receive-pack --informative-errors --verbose
|
[
"git-daemon_2",
"git-daemon_3",
"git-daemon_20",
"git-daemon_26",
"git-daemon_45",
"git-daemon_46",
"git-daemon_47",
"git-daemon_48",
"git-daemon_50",
"git-daemon_51",
"git-daemon_54"
] |
git-daemon
|
git-daemon
| true |
{
"token": [
"git",
"daemon",
"--enable=receive-pack",
"--informative-errors",
"--verbose",
"|main|"
],
"oracle_man": [
[
"git-daemon_2",
"git-daemon_45",
"git-daemon_46",
"git-daemon_47",
"git-daemon_48",
"git-daemon_50",
"git-daemon_51"
],
[
"git-daemon_2",
"git-daemon_45",
"git-daemon_47",
"git-daemon_50",
"git-daemon_51",
"git-daemon_54"
],
[],
[],
[
"git-daemon_2",
"git-daemon_20",
"git-daemon_26",
"git-daemon_46",
"git-daemon_48",
"git-daemon_51"
],
[
"git-daemon_3",
"git-daemon_4",
"git-daemon_5",
"git-daemon_6",
"git-daemon_7"
]
]
}
|
5197
|
display the name of the root window
|
xprop -root WM_NAME
|
[
"xprop_2",
"xprop_9",
"xprop_14",
"xprop_19",
"xprop_20",
"xprop_21",
"xprop_52",
"xprop_54"
] |
xprop
|
xprop
| true |
{
"token": [
"-root",
"WM_NAME",
"|main|"
],
"oracle_man": [
[
"xprop_2",
"xprop_9",
"xprop_14",
"xprop_20",
"xprop_21",
"xprop_52",
"xprop_54"
],
[],
[
"xprop_19",
"xprop_20",
"xprop_21",
"xprop_22",
"xprop_23",
"xprop_24",
"xprop_25",
"xprop_26",
"xprop_27",
"xprop_28",
"xprop_29",
"xprop_30",
"xprop_31",
"xprop_32",
"xprop_33",
"xprop_34",
"xprop_35",
"xprop_36",
"xprop_37",
"xprop_38",
"xprop_39",
"xprop_40",
"xprop_41",
"xprop_42",
"xprop_43",
"xprop_44",
"xprop_45",
"xprop_46",
"xprop_47",
"xprop_48",
"xprop_49",
"xprop_50",
"xprop_51"
]
]
}
|
5198
|
display the window manager hints for a window
|
xprop -name "{{window_name}}" WM_HINTS
|
[
"xprop_2",
"xprop_7",
"xprop_14",
"xprop_15",
"xprop_16",
"xprop_19",
"xprop_20",
"xprop_21",
"xprop_53"
] |
xprop
|
xprop
| true |
{
"token": [
"-name",
"WM_HINTS",
"|main|"
],
"oracle_man": [
[
"xprop_2",
"xprop_7",
"xprop_14",
"xprop_15",
"xprop_16",
"xprop_20",
"xprop_21",
"xprop_53"
],
[],
[
"xprop_19",
"xprop_20",
"xprop_21",
"xprop_22",
"xprop_23",
"xprop_24",
"xprop_25",
"xprop_26",
"xprop_27",
"xprop_28",
"xprop_29",
"xprop_30",
"xprop_31",
"xprop_32",
"xprop_33",
"xprop_34",
"xprop_35",
"xprop_36",
"xprop_37",
"xprop_38",
"xprop_39",
"xprop_40",
"xprop_41",
"xprop_42",
"xprop_43",
"xprop_44",
"xprop_45",
"xprop_46",
"xprop_47",
"xprop_48",
"xprop_49",
"xprop_50",
"xprop_51"
]
]
}
|
5199
|
display the point size of a font
|
xprop -font "{{font_name}}" POINT_SIZE
|
[
"xprop_2",
"xprop_8",
"xprop_19",
"xprop_21",
"xprop_55"
] |
xprop
|
xprop
| true |
{
"token": [
"-font",
"POINT_SIZE",
"|main|"
],
"oracle_man": [
[
"xprop_2",
"xprop_8",
"xprop_21",
"xprop_55"
],
[],
[
"xprop_19",
"xprop_20",
"xprop_21",
"xprop_22",
"xprop_23",
"xprop_24",
"xprop_25",
"xprop_26",
"xprop_27",
"xprop_28",
"xprop_29",
"xprop_30",
"xprop_31",
"xprop_32",
"xprop_33",
"xprop_34",
"xprop_35",
"xprop_36",
"xprop_37",
"xprop_38",
"xprop_39",
"xprop_40",
"xprop_41",
"xprop_42",
"xprop_43",
"xprop_44",
"xprop_45",
"xprop_46",
"xprop_47",
"xprop_48",
"xprop_49",
"xprop_50",
"xprop_51"
]
]
}
|
5200
|
display all the properties of the window with the id 0x200007
|
xprop -id {{0x200007}}
|
[
"xprop_2",
"xprop_6",
"xprop_14",
"xprop_19",
"xprop_20",
"xprop_21",
"xprop_56"
] |
xprop
|
xprop
| true |
{
"token": [
"-id",
"|main|"
],
"oracle_man": [
[
"xprop_2",
"xprop_6",
"xprop_14",
"xprop_20",
"xprop_21",
"xprop_56"
],
[
"xprop_19",
"xprop_20",
"xprop_21",
"xprop_22",
"xprop_23",
"xprop_24",
"xprop_25",
"xprop_26",
"xprop_27",
"xprop_28",
"xprop_29",
"xprop_30",
"xprop_31",
"xprop_32",
"xprop_33",
"xprop_34",
"xprop_35",
"xprop_36",
"xprop_37",
"xprop_38",
"xprop_39",
"xprop_40",
"xprop_41",
"xprop_42",
"xprop_43",
"xprop_44",
"xprop_45",
"xprop_46",
"xprop_47",
"xprop_48",
"xprop_49",
"xprop_50",
"xprop_51"
]
]
}
|
5201
|
remove the specified file if it is the last link
|
unlink {{path/to/file}}
|
[
"unlink_3"
] |
unlink
|
unlink
| true |
{
"token": [
"|main|"
],
"oracle_man": [
[
"unlink_3",
"unlink_4",
"unlink_5"
]
]
}
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.