1 2 |
# echo "you are right"| gzip --stdout|php -r 'echo gzinflate(substr(file_get_contents("php://stdin"), 10, -8));' you are right |
1 2 |
$ echo "you are right"| gzip --stdout| gzip -d you are right |
DevOps
1 2 |
# echo "you are right"| gzip --stdout|php -r 'echo gzinflate(substr(file_get_contents("php://stdin"), 10, -8));' you are right |
1 2 |
$ echo "you are right"| gzip --stdout| gzip -d you are right |