add_linter #5

Merged
otthorn merged 8 commits from add_linter into master 2021-02-19 01:20:11 +01:00
Showing only changes of commit e6f5a587e4 - Show all commits

View file

@ -136,11 +136,11 @@ ${bold}$output_path${normal}."
function compute_compression function compute_compression
{ {
input_size=`du "$input_path" | cut -f1` input_size=$(du "$input_path" | cut -f1)
output_size=`du "$output_path" | cut -f1` output_size=$(du "$output_path" | cut -f1)
percentage=`echo "scale=1;$output_size / $input_size * 100" | bc -l` percentage=$(echo "scale=1;$output_size / $input_size * 100" | bc -l)
input_size_h=`du -h "$input_path" | cut -f1` input_size_h=$(du -h "$input_path" | cut -f1)
output_size_h=`du -h "$output_path" | cut -f1` output_size_h=$(du -h "$output_path" | cut -f1)
echo "Size reduced from ${bold}$input_size_h${normal} to \ echo "Size reduced from ${bold}$input_size_h${normal} to \
${bold}$output_size_h${normal} [$percentage %]" ${bold}$output_size_h${normal} [$percentage %]"