Site icon moneyslow.com

shell中esac的用法

linux shell学习

linux shell学习

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.

Exit mobile version