From Benno Web version 2.10.3 onwards, a single search query can be saved as a bookmark.
After performing the search in the web interface, you can copy the link below the "Search" button or save it directly as a bookmark.
Die Suche wird als GET-Request mit dem Parameter queryData ausgeführt. Dieser Parameter enthält einen Base64-codierten, mit zlib komprimierten JSON-String mit den Suchparametern.
The search string can be decoded using the following commands:
echo 'https://benno.intern/benno...' | \ sed -e 's/^.*queryData=\(.*\)/\1/'| \ tr -+ | \ tr _ / \ |base64 -d|zlib-flate -uncompress