topical media & game development

talk show tell print

basic-shell-11-debug-call.sh / sh



  
  # Shows another error, harder to find.
  
  # Using bc for math.
  # Calculates sales tax.
  
  echo -n "Please enter the amount of purchase: "
  read amount
  echo
  
  echo -n "Please enter the total sales tax: "
  read rate
  echo
  
  result=$( echo "
  scale=2; tax=amount\*rate/100.00;total=amount+tax;print total" | bc )
  
  echo "The total with sales tax is: $ result."
  


(C) Æliens 20/2/2008

You may not copy or print any of this material without explicit permission of the author or the publisher. In case of other copyright issues, contact the author.