Linux > General Linux

esac in shell scripting

(1/1)

arunlalpr:
esac in shell scripting

Like fi for if. esac is the spell backward of "case".


===================

#!/bin/sh

FRUIT="kiwi"

case "$FRUIT" in
   "apple") echo "Apple pie is quite tasty."
   ;;
   "banana") echo "I like banana nut bread."
   ;;
   "kiwi") echo "New Zealand is famous for kiwi."
   ;;
esac

==========================

Happy scripting.

Navigation

[0] Message Index

Go to full version