ddanielr commented on PR #5081: URL: https://github.com/apache/accumulo/pull/5081#issuecomment-2489162696
> I created table `test` and added splits `a-z` and `0-9`. Running the command `getsplits -t <table> -v` displays the obfuscated value and the extent information. Piping this command to `grep` directly did not work, but the following does work: > > ``` > ./accumulo shell -e "getsplits -t test -v -o /tmp/splits" && grep 'X+zrZv/IbzjZUnhsbWlsecLbwjndTpG0ZynXOif7V+k=' /tmp/splits > > X+zrZv/IbzjZUnhsbWlsecLbwjndTpG0ZynXOif7V+k= (-inf, 0] > ``` Yeah the whole reason for the property was that there wasn't a way to do a lookup of the obfuscated value to match a tablet. Piping directly to grep is an issue with the `-e` behavior in the shell. Looking at past issues, it appears to be related to changes within Jline. -- 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: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
