Shawyeok opened a new pull request, #2180: URL: https://github.com/apache/zookeeper/pull/2180
Currently, the `get` and `set` commands in the zkCli tool only support reading and writing text data. However, znode data can be an arbitrary byte array. It would be useful to read and write binary data in base64 or hexdump format. This PR provides two options for the `get` command: - `get -b /foo`: Outputs data in base64 format. - `get -x /foo`: Outputs data in hexdump format. Additionally, it provides a `-b` option for the `set` command to allow users to set binary data for a znode. For instance: `set -b /foo em9va2VlcGVy`. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: notifications-unsubscr...@zookeeper.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org