fork download
  1. #!/usr/bin/env bash
  2. size_re='^[[:space:]]*([[:digit:]]+)[[:space:]]*([kmg])b?[[:space:]]*$'
  3.  
  4. declare -A multipliers=(
  5. [k]=$(( 1024 ))
  6. [m]=$(( 1024 * 1024 ))
  7. [g]=$(( 1024 * 1024 * 1024 ))
  8. )
  9.  
  10. to_bytes() {
  11. result=$1
  12. if [[ $1 =~ $size_re ]] && { units=${BASH_REMATCH[2]}; [[ $units && ${multipliers[$units]} ]]; }; then
  13. result=$(( ${BASH_REMATCH[1]} * ${multipliers[${BASH_REMATCH[2]}]} ))
  14. elif (( $1 )); then
  15. result=$(( $1 ))
  16. else
  17. echo "ERROR: $1 could not be parsed as a number" >&2
  18. return 1
  19. fi
  20. echo "$result"
  21. }
  22.  
  23. Var1='25 MB'
  24. Var2=1G
  25. Var1_bytes=$(to_bytes "${Var1,,}") || exit
  26. Var2_bytes=$(to_bytes "${Var2,,}") || exit
  27. if (( Var1_bytes > Var2_bytes )); then
  28. echo "Var1 (${Var1_bytes} bytes) is larger than Var2 (${Var2_bytes} bytes)"
  29. else
  30. echo "Var1 (${Var1_bytes} bytes) is NOT larger than Var2 (${Var2_bytes} bytes)"
  31. fi
  32.  
Success #stdin #stdout 0.01s 5516KB
stdin
Standard input is empty
stdout
Var1 (26214400 bytes) is NOT larger than Var2 (1073741824 bytes)