From 720145c24185880aaf6813004779628b04162d77 Mon Sep 17 00:00:00 2001 From: Erich Eckner Date: Fri, 8 Dec 2017 17:06:06 +0100 Subject: bin/mysql-functions: encapsulate base64-encoding in a separate function --- bin/mysql-functions | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'bin/mysql-functions') diff --git a/bin/mysql-functions b/bin/mysql-functions index 5acf85c..2635318 100755 --- a/bin/mysql-functions +++ b/bin/mysql-functions @@ -6,6 +6,15 @@ mysql_command='mysql buildmaster -e' +# base64_encode_each encode each line of stdin with base64 + +base64_encode_each() { + parallel -N1 -l1 --pipe ' + base64 -w0 + printf "\n" + ' +} + # mysql_add_package_source $pkgbase $git_revision $mod_git_revision $upstream_package_repository # shellcheck disable=SC2016,SC2086 -- cgit v1.2.3-54-g00ecf