You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
552 B
JSON

{
"description": "There are also a number of other utilities that rely on 'gzip' under the hood, e.g., 'zless', 'zcat', 'gunzip', etc. Besides having similar features, they also allow privileged reads if 'gzip' itself is SUID.",
"functions": {
"file-read": [
{
"code": "gzip -f [file] -t\n"
},
{
"code": "gzip -c [file] | gzip -d\n"
}
],
"suid": [
{
"code": "./gzip -f [file] -t\n"
}
],
"sudo": [
{
"code": "sudo gzip -f [file] -t\n"
}
]
}
}