From 44561eb1f209e79664164afdb95f3ca67f365693 Mon Sep 17 00:00:00 2001 From: Erich Eckner Date: Thu, 18 Jan 2018 16:05:26 +0100 Subject: bin/mysql-functions: accellerate base64_encode_each --- bin/mysql-functions | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/bin/mysql-functions b/bin/mysql-functions index 14966d2..bcfb3ae 100755 --- a/bin/mysql-functions +++ b/bin/mysql-functions @@ -9,10 +9,14 @@ mysql_command='mysql buildmaster -e' # base64_encode_each encode each line of stdin with base64 base64_encode_each() { - parallel -N1 -l1 --pipe ' - tr -d "\n" | base64 -w0 - printf "\n" - ' + local line + + while read -r line; do + printf '%s' \ + "${line}" | \ + base64 -w0 + printf '\n' + done } # mysql_add_package_source $pkgbase $git_revision $mod_git_revision $upstream_package_repository -- cgit v1.2.3-54-g00ecf