X-Git-Url: https://git.stg.codes/stg.git/blobdiff_plain/386e23e3f885b50c833d0c73da3a14965f350359..4fe29c0b67d4408bcf631e3463eafbffca103a3f:/functest/functions diff --git a/functest/functions b/functest/functions index 183ddc4a..51a1fd32 100644 --- a/functest/functions +++ b/functest/functions @@ -33,8 +33,10 @@ count() { if [ "$1" == "" ] then - printf "0\n" + printf "0" else - printf "$1\n" | wc -l + RES=`printf "$1\n" | wc -l` + RES=`trim "$RES"` + printf "$RES" fi }